summaryrefslogtreecommitdiff
path: root/core/pim/todo/templatedialog.cpp
authorzecke <zecke>2002-10-07 11:39:30 (UTC)
committer zecke <zecke>2002-10-07 11:39:30 (UTC)
commitf11d4bda64b58abfebf77485d5d77143a10dc8c9 (patch) (side-by-side diff)
treea4e80550c4abe867303553de608316941dd943f1 /core/pim/todo/templatedialog.cpp
parentc2cd5470fa3ec69394fa65ad16ab29a6cadab56f (diff)
downloadopie-f11d4bda64b58abfebf77485d5d77143a10dc8c9.zip
opie-f11d4bda64b58abfebf77485d5d77143a10dc8c9.tar.gz
opie-f11d4bda64b58abfebf77485d5d77143a10dc8c9.tar.bz2
Re add files
for todo
Diffstat (limited to 'core/pim/todo/templatedialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/templatedialog.cpp60
1 files changed, 60 insertions, 0 deletions
diff --git a/core/pim/todo/templatedialog.cpp b/core/pim/todo/templatedialog.cpp
new file mode 100644
index 0000000..ffcdc24
--- a/dev/null
+++ b/core/pim/todo/templatedialog.cpp
@@ -0,0 +1,60 @@
+#include <qpushbutton.h>
+#include <qhbox.h>
+#include <qlayout.h>
+#include <qlistview.h>
+#include <qlineedit.h>
+
+#include "templatedialog.h"
+
+
+using namespace Todo;
+
+TemplateDialog::TemplateDialog( QWidget* widget )
+ : QDialog( widget, "TemplateDialog", TRUE )
+{
+ setCaption( tr("Template Editor") );
+ m_main = new QVBoxLayout(this );
+
+ m_list = new QListView( this );
+ m_main->addWidget( m_list, 100 );
+
+ m_lne = new QLineEdit( this );
+ m_main->addWidget( m_lne );
+
+ m_btnBar = new QHBox( this );
+ m_add = new QPushButton( tr("Add"), m_btnBar );
+ m_edit = new QPushButton( tr("Edit"), m_btnBar );
+ m_rem = new QPushButton( tr("Remove"), m_btnBar );
+ m_main->addWidget( m_btnBar );
+
+ connect(m_add, SIGNAL(clicked() ),
+ this, SLOT(slotAdd() ) );
+ connect(m_edit, SIGNAL(clicked() ),
+ this, SLOT(slotEdit() ) );
+ connect(m_rem, SIGNAL(clicked() ),
+ this, SLOT(slotEdit() ) );
+ connect(m_lne, SIGNAL(returnPressed() ),
+ this, SLOT(slotReturn() ) );
+
+}
+TemplateDialog::~TemplateDialog() {
+ // Qt does delete our widgets
+}
+QListView* TemplateDialog::listView() {
+ return m_list;
+}
+QLineEdit* TemplateDialog::edit() {
+ return m_lne;
+}
+void TemplateDialog::slotAdd() {
+ qWarning("Not Implemented here");
+}
+void TemplateDialog::slotRemove() {
+ qWarning("Not Implemented here");
+}
+void TemplateDialog::slotEdit() {
+ qWarning("Not Implemented here");
+}
+void TemplateDialog::slotReturn() {
+ qWarning("Not Implemented here");
+}