mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
5d5a393265
+ Basic tray icon support added. + Program icon added (one of the Qt Linguist icons, actually).
39 lines
717 B
C++
39 lines
717 B
C++
#ifndef __PREFERENCES_HH_INCLUDED__
|
|
#define __PREFERENCES_HH_INCLUDED__
|
|
|
|
#include <QDialog>
|
|
#include "config.hh"
|
|
#include "ui_preferences.h"
|
|
|
|
/// Preferences dialog -- allows changing various program options.
|
|
class Preferences: public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Preferences( QWidget * parent, Config::Preferences const & );
|
|
|
|
Config::Preferences getPreferences();
|
|
|
|
private:
|
|
|
|
Ui::Preferences ui;
|
|
|
|
private slots:
|
|
|
|
void enableScanPopupToggled( bool );
|
|
void enableScanPopupModifiersToggled( bool );
|
|
|
|
void wholeAltClicked( bool );
|
|
void wholeCtrlClicked( bool );
|
|
void wholeShiftClicked( bool );
|
|
|
|
void sideAltClicked( bool );
|
|
void sideCtrlClicked( bool );
|
|
void sideShiftClicked( bool );
|
|
};
|
|
|
|
#endif
|
|
|