comparison gui/src/backend/OctaveLink.h @ 14599:97cb9286919c gui

Cleaned up code. * .hgsub: Removed IRC Widget. * gui.pro: Removed dependency on IRC Widget and removed files. * class FileEditorMdiSubWindow: Renamed to FileEditor. File editor windows are now independent windows, thus removed the extra close button. * MainWindow: Removed MDI Area and replaced it with the terminal instead. * BrowserWidget: Removed browser widget. * SettingsDialog: Rearranged settings for the editor, removed tab for shortcuts. * OctaveCallbackThread: Raised update intervals from 0,5s to 1s. * OctaveLink: Replaced signals names for triggering updates on the symbol table. * WorkspaceView: Adjusted connect statements to fit the new signal names.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Mon, 07 May 2012 00:53:54 +0200
parents faece6b2ab90
children 664f54233c98
comparison
equal deleted inserted replaced
14588:fa52c6e84ae0 14599:97cb9286919c
109 * Returns a copy of the current symbol table buffer. 109 * Returns a copy of the current symbol table buffer.
110 * \return Copy of the current symbol table buffer. 110 * \return Copy of the current symbol table buffer.
111 */ 111 */
112 QList < SymbolRecord > copyCurrentSymbolTable (); 112 QList < SymbolRecord > copyCurrentSymbolTable ();
113 113
114 void updateHistoryModel (); 114 void triggerUpdateHistoryModel ();
115 QStringListModel *historyModel (); 115 QStringListModel *historyModel ();
116 void emitSymbolTableChanged() { emit symbolTableChanged(); } 116 void triggerUpdateSymbolTable() { emit updateSymbolTable(); }
117 117
118 signals: 118 signals:
119 void symbolTableChanged (); 119 void updateSymbolTable ();
120 120
121 private: 121 private:
122 OctaveLink (); 122 OctaveLink ();
123 ~OctaveLink (); 123 ~OctaveLink ();
124 124