summaryrefslogtreecommitdiffstats
path: root/src/gui/linefieldwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/linefieldwidget.h')
-rw-r--r--src/gui/linefieldwidget.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/gui/linefieldwidget.h b/src/gui/linefieldwidget.h
new file mode 100644
index 0000000..70dc175
--- /dev/null
+++ b/src/gui/linefieldwidget.h
@@ -0,0 +1,51 @@
+/***************************************************************************
+ copyright : (C) 2005-2006 by Robby Stephenson
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of version 2 of the GNU General Public License as *
+ * published by the Free Software Foundation; *
+ * *
+ ***************************************************************************/
+
+#ifndef LINEFIELDWIDGET_H
+#define LINEFIELDWIDGET_H
+
+#include "fieldwidget.h"
+#include "../datavectors.h"
+
+namespace Tellico {
+ namespace GUI {
+ class LineEdit;
+
+/**
+ * @author Robby Stephenson
+ */
+class LineFieldWidget : public FieldWidget {
+Q_OBJECT
+
+public:
+ LineFieldWidget(Data::FieldPtr field, QWidget* parent, const char* name=0);
+ virtual ~LineFieldWidget() {}
+
+ virtual QString text() const;
+ virtual void setText(const QString& text);
+ virtual void addCompletionObjectItem(const QString& text);
+
+public slots:
+ virtual void clear();
+
+protected:
+ virtual QWidget* widget();
+ virtual void updateFieldHook(Data::FieldPtr oldField, Data::FieldPtr newField);
+
+private:
+ GUI::LineEdit* m_lineEdit;
+};
+
+ } // end GUI namespace
+} // end namespace
+#endif