BiblioteQ
biblioteq_otheroptions.h
1 #ifndef _BIBLIOTEQ_OTHEROPTIONS_H_
2 #define _BIBLIOTEQ_OTHEROPTIONS_H_
3 
4 #include "ui_biblioteq_otheroptions.h"
5 
6 class biblioteq;
7 
8 class biblioteq_otheroptions: public QMainWindow
9 {
10  Q_OBJECT
11 
12  public:
15  QString publicationDateFormat(const QString &itemType) const;
16  void prepareSettings(void);
17 
18  private:
19  Ui_otheroptions m_ui;
20  biblioteq *qmain;
21  void changeEvent(QEvent *event);
22  void closeEvent(QCloseEvent *event);
23  void keyPressEvent(QKeyEvent *event);
24  void setGlobalFonts(const QFont &font);
25 
26  private slots:
27  void slotClose(void);
28  void slotPreviewCanvasBackgroundColor(const QColor &color);
29  void slotSave(void);
30  void slotSelectMainwindowCanvasBackgroundColor(void);
31 
32  public slots:
33  void showNormal(void);
34 
35  signals:
36  void mainWindowCanvasBackgroundColorChanged(const QColor &color);
37  void mainWindowCanvasBackgroundColorPreview(const QColor &color);
38  void saved(void);
39 };
40 
41 #endif
Definition: biblioteq_otheroptions.h:8
Definition: biblioteq.h:173