comparison main.h @ 34:87f098892804

Make the UI scale with undocumented hotkeys.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 03 Apr 2017 18:04:11 +0300
parents d40345d63733
children 2cc7c89ab649
comparison
equal deleted inserted replaced
33:5b15c0ca5560 34:87f098892804
133 133
134 void on_tableview_People_doubleClicked(const QModelIndex &index); 134 void on_tableview_People_doubleClicked(const QModelIndex &index);
135 135
136 void selectedPersonChanged(const QModelIndex &, const QModelIndex &); 136 void selectedPersonChanged(const QModelIndex &, const QModelIndex &);
137 137
138 void changeUIScaleZoomIn();
139 void changeUIScaleZoomOut();
138 140
139 void updateSortOrder(int index, Qt::SortOrder order); 141 void updateSortOrder(int index, Qt::SortOrder order);
140 142
141 void on_button_DeletePerson_clicked(); 143 void on_button_DeletePerson_clicked();
142 144
148 150
149 int peopleSortIndex; 151 int peopleSortIndex;
150 Qt::SortOrder peopleSortOrder; 152 Qt::SortOrder peopleSortOrder;
151 QString peopleFilter; 153 QString peopleFilter;
152 154
153 QShortcut *sc_quit, *sc_esc; 155 QShortcut *sc_quit, *sc_esc, *sc_sc_up, *sc_sc_dn;
154 }; 156 };
155 157
156 158
157 class EditPerson : public QDialog 159 class EditPerson : public QDialog
158 { 160 {