179 connect ( OpenDB, SIGNAL ( triggered() ),
this, SLOT ( slot_open_database_from_file() ) );
180 connect ( Commit, SIGNAL ( triggered() ),
this, SLOT ( slot_commit_database() ) );
181 connect ( LaunchGraphicalView, SIGNAL ( triggered() ),
this,
182 SLOT ( slot_build_graphical_view() ) );
183 connect ( Exit, SIGNAL ( triggered() ),
this, SLOT ( close() ) );
184 connect ( UndoAction, SIGNAL ( triggered() ), UndoView->stack(), SLOT ( undo() ) );
185 connect ( RedoAction, SIGNAL ( triggered() ), UndoView->stack(), SLOT ( redo() ) );
186 connect ( UndoAll, SIGNAL ( triggered() ),
this, SLOT ( slot_undo_allchanges() ) );
187 connect ( BatchChange, SIGNAL ( triggered() ),
this, SLOT ( slot_launch_batchchange() ) );
188 connect ( BatchChangeTable, SIGNAL ( triggered() ),
this,
189 SLOT ( slot_launch_batchchange_on_table() ) );
191 connect ( DisplayClassView, SIGNAL ( triggered (
bool ) ), TreeDockWidget,
192 SLOT ( setVisible (
bool ) ) );
193 connect ( DisplayPartitionView, SIGNAL ( triggered (
bool ) ), PartitionDockWidget,
194 SLOT ( setVisible (
bool ) ) );
195 connect ( DisplaySegmentsView, SIGNAL ( triggered (
bool ) ), ResourceDockWidget,
196 SLOT ( setVisible (
bool ) ) );
197 connect ( DisplayTableView, SIGNAL ( triggered (
bool ) ), TableGroupBox,
198 SLOT ( setVisible (
bool ) ) );
199 connect ( DisplayMessages, SIGNAL ( triggered (
bool ) ), InfoDockWidget,
200 SLOT ( setVisible (
bool ) ) );
201 connect ( DisplayToolbar, SIGNAL ( triggered (
bool ) ), MainToolBar,
202 SLOT ( setVisible (
bool ) ) );
204 connect ( TreeDockWidget, SIGNAL ( visibilityChanged (
bool ) ), DisplayTableView,
205 SLOT ( setChecked (
bool ) ) );
206 connect ( PartitionDockWidget, SIGNAL ( visibilityChanged (
bool ) ), DisplayPartitionView,
207 SLOT ( setChecked (
bool ) ) );
208 connect ( ResourceDockWidget, SIGNAL ( visibilityChanged (
bool ) ), DisplaySegmentsView,
209 SLOT ( setChecked (
bool ) ) );
210 connect ( InfoDockWidget , SIGNAL ( visibilityChanged (
bool ) ), DisplayMessages,
211 SLOT ( setChecked (
bool ) ) );
212 connect ( MainToolBar , SIGNAL ( visibilityChanged (
bool ) ), DisplayToolbar,
213 SLOT ( setChecked (
bool ) ) );
216 connect ( LoadDefaultSettings, SIGNAL ( triggered() ),
this,
217 SLOT ( LoadDefaultSetting() ) );
218 connect ( CreateDatabase, SIGNAL ( triggered() ),
this, SLOT ( slot_create_newdb() ) );
221 connect ( WhatThisAction, SIGNAL ( triggered() ),
this, SLOT ( slot_whatisthis() ) );
222 connect ( UserGuide, SIGNAL ( triggered() ),
this, SLOT ( slot_show_userguide() ) );
223 connect ( UserChanges, SIGNAL ( triggered() ),
this, SLOT ( slot_show_userchanges() ) );
225 connect ( TreeView, SIGNAL ( doubleClicked ( QModelIndex ) ),
this,
226 SLOT ( slot_edit_object_from_class_view ( QModelIndex ) ) );
227 connect ( PartitionView, SIGNAL ( doubleClicked ( QModelIndex ) ),
this,
228 SLOT ( slot_edit_object_from_partition_view ( QModelIndex ) ) );
229 connect ( ResourceView, SIGNAL ( doubleClicked ( QModelIndex ) ),
this,
230 SLOT ( slot_edit_object_from_resource_view ( QModelIndex ) ) );
232 connect( &
confaccessor::ref(), SIGNAL(db_committed(
const std::list<std::string>&,
const std::string&)),
this,
233 SLOT(slot_update_committed_files(
const std::list<std::string>&,
const std::string&)));
237 SLOT ( slot_fetch_data (
const treenode * ) ) );
240 SLOT(slot_toggle_commit_button()));
242 SLOT(slot_toggle_commit_button()));
244 SLOT(slot_toggle_commit_button()));
246 SLOT(slot_toggle_commit_button()));
247 connect( &
confaccessor::ref(), SIGNAL(db_committed(
const std::list<std::string>&,
const std::string&)),
this,
248 SLOT(slot_toggle_commit_button()));
250 SLOT(slot_toggle_commit_button()));
252 SLOT(slot_toggle_commit_button()));
254 SLOT(slot_toggle_commit_button()));
256 SLOT(slot_toggle_commit_button()));
257 connect(
this, SIGNAL(signal_batch_change_stopped(
const QList<QPair<QString, QString>>&)),
this,
258 SLOT(slot_toggle_commit_button()));
261 SLOT ( slot_model_rebuild() ) );
263 SLOT ( slot_model_rebuild() ) );
265 SLOT ( slot_process_externalchanges() ) );
267 connect ( SearchTreeLine, SIGNAL ( textChanged (
const QString & ) ),
this,
268 SLOT ( slot_filter_textchange (
const QString & ) ) );
269 connect ( SearchTreeLine, SIGNAL ( textEdited (
const QString & ) ),
this,
270 SLOT ( slot_filter_query() ) );
271 connect ( SearchTreeLine, SIGNAL ( returnPressed() ),
this, SLOT ( slot_filter_query() ) );
272 connect ( SearchLineTable, SIGNAL ( textChanged (
const QString & ) ),
this,
273 SLOT ( slot_filter_table_textchange (
const QString & ) ) );
274 connect ( CaseSensitiveCheckBoxTree, SIGNAL ( clicked (
bool ) ),
this,
275 SLOT ( slot_toggle_casesensitive_for_treeview (
bool ) ) );
279 connect ( information_about_dbe, SIGNAL ( triggered() ),
this,
280 SLOT ( slot_show_information_about_dbe() ) );
285 SIGNAL ( signal_debug ( QString
const, QString
const ) ),
this,
286 SLOT ( slot_debuginfo_message ( QString , QString ) ), Qt::QueuedConnection );
289 SIGNAL ( signal_info ( QString
const, QString
const ) ),
this,
290 SLOT ( slot_information_message ( QString , QString ) ), Qt::QueuedConnection );
293 SIGNAL ( signal_note ( QString
const, QString
const ) ),
this,
294 SLOT ( slot_notice_message ( QString , QString ) ), Qt::QueuedConnection );
297 SIGNAL ( signal_warn ( QString
const, QString
const ) ),
this,
298 SLOT ( slot_warning_message ( QString , QString ) ), Qt::QueuedConnection );
301 SIGNAL ( signal_error ( QString
const, QString
const ) ),
this,
302 SLOT ( slot_error_message ( QString, QString ) ), Qt::QueuedConnection );
305 SIGNAL ( signal_fail ( QString
const, QString
const ) ),
this,
306 SLOT ( slot_failure_message ( QString , QString ) ), Qt::QueuedConnection );