[dgplug-users] application not working
Sunny Sharma
sunny20062010 at gmail.com
Tue Feb 16 20:50:14 PST 2010
Hello sir,
The program given is compiling properly forming a proper GUI but its not
finding the word in an editor.In other words the program is not running
properly
Please have a look at it.
regards,
sunny
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.dgplug.org/pipermail/users-dgplug.org/attachments/20100217/f53a5651/attachment-0001.htm>
-------------- next part --------------
#ifndef FINDDIALOG_H
#define FINDDIALOG_H
#include<QDialog>
class QLabel;
class QLineEdit;
class QCheckBox;
class QPushButton;
class FindDialog : public QDialog
{
Q_OBJECT
public:
FindDialog( QWidget *parent = 0 );
signals:
void nextButton( const QString &str, Qt::CaseSensitivity cs );
void previousButton( const QString &str, Qt::CaseSensitivity cs );
private slots:
void findClicked();
void enableFindButton( const QString &text );
private:
QLabel *label;
QLineEdit *lineEdit;
QCheckBox *caseCheckBox;
QCheckBox *backwardCheckBox;
QPushButton *findButton;
QPushButton *closeButton;
};
#endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: FindDialog.cpp
Type: application/octet-stream
Size: 1824 bytes
Desc: not available
URL: <http://lists.dgplug.org/pipermail/users-dgplug.org/attachments/20100217/f53a5651/attachment-0004.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: main.cpp
Type: application/octet-stream
Size: 195 bytes
Desc: not available
URL: <http://lists.dgplug.org/pipermail/users-dgplug.org/attachments/20100217/f53a5651/attachment-0005.obj>
More information about the Users
mailing list