OSDN Git Service

I forgot to import...
authorikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Sat, 8 Mar 2003 10:25:13 +0000 (10:25 +0000)
committerikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Sat, 8 Mar 2003 10:25:13 +0000 (10:25 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/kita/kita/trunk@65 56b19765-1e22-0410-a548-a0f45d66c51a

src/kitawritedialog.cpp [new file with mode: 0644]
src/kitawritedialog.h [new file with mode: 0644]

diff --git a/src/kitawritedialog.cpp b/src/kitawritedialog.cpp
new file mode 100644 (file)
index 0000000..3624b0e
--- /dev/null
@@ -0,0 +1,38 @@
+/***************************************************************************
+ *   Copyright (C) 2003 by Hideki Ikemoto                                  *
+ *   ikemo@wakaba.jp                                                       *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ ***************************************************************************/
+
+#include "kitawritedialog.h"
+
+#include <qlineedit.h>
+#include <qtextedit.h>
+
+KitaWriteDialog::KitaWriteDialog(QWidget *parent, const char *name)
+  : KitaWriteDialogBase(parent, name)
+{
+}
+
+KitaWriteDialog::~KitaWriteDialog()
+{
+}
+
+QString KitaWriteDialog::name()
+{
+  return nameLine->text();
+}
+
+QString KitaWriteDialog::mail()
+{
+  return mailLine->text();
+}
+
+QString KitaWriteDialog::body()
+{
+  return bodyText->text();
+}
diff --git a/src/kitawritedialog.h b/src/kitawritedialog.h
new file mode 100644 (file)
index 0000000..86d5b97
--- /dev/null
@@ -0,0 +1,33 @@
+/***************************************************************************
+ *   Copyright (C) 2003 by Hideki Ikemoto                                  *
+ *   ikemo@wakaba.jp                                                       *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ ***************************************************************************/
+
+#ifndef _KITAWRITEDIALOG_H_
+#define _KITAWRITEDIALOG_H_
+
+#include <qwidget.h>
+#include "kitawritedialogbase.h"
+
+/**
+ * 
+ * Hideki Ikemoto
+ **/
+class KitaWriteDialog : public KitaWriteDialogBase
+{
+  Q_OBJECT
+
+public:
+  KitaWriteDialog(QWidget *parent=0, const char *name=0);
+  virtual ~KitaWriteDialog();
+  QString name();
+  QString mail();
+  QString body();
+};
+
+#endif