Almetare  1.15
Alle meine Taschenrechner - Eine C++-Bibliothek zur Entwicklung von Taschenrechnern
about_dlg.h
gehe zur Dokumentation dieser Datei
1 //******************************************************************************
2 // Copyright (c) 2002-2004 by Friedemann Seebass, Germany.
3 // Dieses Programm ist freie Software. Siehe GNU GPL Notiz in Datei main.cpp.
4 // This program is free software. See the GNU GPL notice in file main.cpp.
5 // Projekt: Almetare - Alle meine Taschenrechner
6 //******************************************************************************
9 //******************************************************************************
10 // Wann Wer Was
11 // ---------- -------- ---------------------------------------------------------
12 // 16.11.2003 fse neue Klassenvariable mApplIconPixmap
13 // 09.11.2002 fse erzeugt
14 //******************************************************************************
15 
16 #ifndef ABOUTDLG_H
17 #define ABOUTDLG_H
18 
19 #include "about_base_dlg.h"
20 
21 //******************************************************************************
22 
26 // fse, 09.11.02
27 // fse, 16.11.03: neue Klassenvariable mApplIconPixmap
28 
29 class AboutDlg : public AboutBaseDlg
30 {
31  Q_OBJECT
32  QPixmap& mApplIconPixmap;
33 
34 public:
35  AboutDlg(char* nameP,
36  QPixmap& applIconPixmap,
37  char* vrsP,
38  QWidget* parent = 0,
39  const char* name = 0,
40  bool modal = FALSE,
41  WFlags fl = 0);
42 };
43 
44 #endif // ABOUTDLG_H
Die Klasse enthaelt die Implementierung der eigenen Funktionalitaet der About-Dialogbox.
Definition: about_dlg.h:29
QPixmap & mApplIconPixmap
Pixmap mit dem Application-Icon (links oben im Dialog)
Definition: about_dlg.h:32
AboutDlg(char *nameP, QPixmap &applIconPixmap, char *vrsP, QWidget *parent=0, const char *name=0, bool modal=FALSE, WFlags fl=0)
Konstruktor.
Definition: about_dlg.cpp:35
Definition: about_base_dlg.h:21