repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce old redir program
[lcapit-junk-code.git]
/
qt-course
/
exer355-base-converter
/
MyWidget.h
blob
05e735d9a9568dc3d1c813251ac9e20c459f77c8
1
#ifndef MYWIDGET_H
2
#define MYWIDGET_H
3
4
#include <QWidget>
5
6
#define NR_LABELS 4
7
8
class
QLineEdit
;
9
class
QString
;
10
11
class
MyWidget
:
public
QWidget
12
{
13
Q_OBJECT
;
14
public
:
15
MyWidget
(
QWidget
*
parent
=
0
);
16
~
MyWidget
();
17
private
:
18
QLineEdit
*
m_qlines
[
NR_LABELS
];
19
QString
*
text
;
20
void
resetLines
();
21
22
private
slots
:
23
void
m_update_lines
();
24
};
25
26
#endif
// MYWIDGET_H