[go: up one dir, main page]

Menu

[4cf102]: / bitbucket.h  Maximize  Restore  History

Download this file

39 lines (29 with data), 642 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef BITBUCKET_H
#define BITBUCKET_H
#include <QtGui>
#include "types.h"
#include "unarybitpanel.h"
#include "binarybitpanel.h"
#include "intconvert.h"
#include "intmath.h"
#include "floatconvert.h"
class CommandLine;
class BitBucket: public QFrame
{
Q_OBJECT
public:
BitBucket(QWidget *parent = 0);
void setFontHeightAndWidth(int height, int width);
int fontHeight;
int fontWidth;
UnaryBitPanel *unaryPanel;
BinaryBitPanel *binaryPanel;
IntConvert *intConvertPanel;
IntMath *intMathPanel;
FloatConvert *floatConvertPanel;
public slots:
signals:
private:
QTabWidget *tab;
};
#endif