author | kergoth <kergoth> | 2002-06-06 23:31:00 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-06-06 23:31:00 (UTC) |
commit | dfb9c76738bb68e235114c5ad43dbd26a59b98ab (patch) (side-by-side diff) | |
tree | 25ab1468116e8a092dc402f8aa96a9c6976ebdce /examples/application/example.cpp | |
parent | 9d6af1137a96d63f71f8e4797fe3bf377d92a15a (diff) | |
download | opie-dfb9c76738bb68e235114c5ad43dbd26a59b98ab.zip opie-dfb9c76738bb68e235114c5ad43dbd26a59b98ab.tar.gz opie-dfb9c76738bb68e235114c5ad43dbd26a59b98ab.tar.bz2 |
Initial revision
Diffstat (limited to 'examples/application/example.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | examples/application/example.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/application/example.cpp b/examples/application/example.cpp new file mode 100644 index 0000000..1e0bbe9 --- a/dev/null +++ b/examples/application/example.cpp @@ -0,0 +1,28 @@ +#include "example.h" +#include <qpushbutton.h> + +/* + * Constructs a Example which is a child of 'parent', with the + * name 'name' and widget flags set to 'f' + */ +Example::Example( QWidget* parent, const char* name, WFlags fl ) + : ExampleBase( parent, name, fl ) +{ + connect(quit, SIGNAL(clicked()), this, SLOT(goodBye())); +} + +/* + * Destroys the object and frees any allocated resources + */ +Example::~Example() +{ + // no need to delete child widgets, Qt does it all for us +} + +/* + * A simple slot... not very interesting. + */ +void Example::goodBye() +{ + close(); +} |