summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtHighlightEditor.h')
-rw-r--r--Swift/QtUI/QtHighlightEditor.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/Swift/QtUI/QtHighlightEditor.h b/Swift/QtUI/QtHighlightEditor.h
index c4c008d..4769ed9 100644
--- a/Swift/QtUI/QtHighlightEditor.h
+++ b/Swift/QtUI/QtHighlightEditor.h
@@ -34,16 +34,19 @@ namespace Swift {
void onDeleteButtonClicked();
void onMoveUpButtonClicked();
void onMoveDownButtonClicked();
- void onCurrentRowChanged(const QModelIndex&);
+ void onCurrentRowChanged(int currentRow);
+ void onApplyButtonClick();
+ void onCancelButtonClick();
+ void onOkButtonClick();
private:
- virtual void closeEvent(QCloseEvent* event);
void selectRow(int row);
int getSelectedRow() const;
Ui::QtHighlightEditor ui_;
- QtSettingsProvider *settings_;
+ QtSettingsProvider* settings_;
+ HighlightManager* highlightManager_;
};
}