Menu

[c54480]: / lineeditdialog.h  Maximize  Restore  History

Download this file

27 lines (19 with data), 509 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
#ifndef LINEEDITDIALOG_H
#define LINEEDITDIALOG_H
#include "ui_lineeditdialog.h"
class LineEditDialog : public QDialog
{
Q_OBJECT
public:
LineEditDialog(QWidget* parent = 0);
public slots:
virtual void showCancelButton( bool b );
virtual void setCaption( const QString & s );
virtual void setLabel( const QString & s );
virtual void setText( const QString & s );
virtual QString getText ();
private:
void init();
Ui::LineEditDialog ui;
};
#endif // LINEEDITDIALOG_H
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.