Almetare 1.20
Alle meine Taschenrechner - Eine C++-Bibliothek zur Entwicklung von Taschenrechnern
fx3600p_symbols_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//******************************************************************************
11//******************************************************************************
12// Wann Wer Was
13// ---------- -------- ---------------------------------------------------------
14// 16.11.2003 fse neue Klassenvariable mApplIconPixmap
15// 31.03.2003 fse erzeugt
16//******************************************************************************
17
18#ifndef FX3600SYMBOLSDLG_H
19#define FX3600SYMBOLSDLG_H
20
21#include <string>
22#include <qmultilineedit.h>
23#include "calc_fx3600p.h"
24#include "fx3600p_symbols_base_dlg.h"
25
26using namespace std;
27
28//******************************************************************************
29
32// fse, 16.11.03: neue Klassenvariable mApplIconPixmap
33
34class Fx3600pSymbolsDlg : public Fx3600pSymbolsBaseDlg
35{
36 Q_OBJECT
37
39 QPixmap& mApplIconPixmap;
40
41public:
43 QPixmap& applIconPixmap,
44 QWidget* parent = 0,
45 const char* name = 0,
46 bool modal = FALSE,
47 WFlags f = 0);
49 void accept();
50};
51
52//******************************************************************************
53
54#endif // !FX3600SYMBOLSDLG_H
Klassen fuer den Casio fx-3600P (Modul special).
Die Klasse implementiert den Computer des Casio fx-3600P.
Definition: calc_fx3600p.h:43
Eigene Dialogklasse des Symboldialogs des fx-3600P.
Definition: fx3600p_symbols_dlg.h:35
ComputerFx3600p * mCompP
Zeiger auf Computer.
Definition: fx3600p_symbols_dlg.h:38
void accept()
Slot fuer den OK-Button.
Definition: fx3600p_symbols_dlg.cpp:63
Fx3600pSymbolsDlg(ComputerFx3600p *compP, QPixmap &applIconPixmap, QWidget *parent=0, const char *name=0, bool modal=FALSE, WFlags f=0)
Konstruktor.
Definition: fx3600p_symbols_dlg.cpp:32
~Fx3600pSymbolsDlg()
Destruktor.
Definition: fx3600p_symbols_dlg.cpp:54
QPixmap & mApplIconPixmap
Pixmap mit dem Application-Icon (links oben im Dialog)
Definition: fx3600p_symbols_dlg.h:39