diff options
| author | 2008-09-15 17:47:38 +0000 | |
|---|---|---|
| committer | 2008-09-15 17:47:38 +0000 | |
| commit | e78652b987533dd1787e645d72abfb9f13ea2d7f (patch) | |
| tree | 76dc2f27896a74af644f6e8dd37d97cb633f7698 /src/modules/objects/class_multilineedit.h | |
| parent | fix for the expand/collapse button (diff) | |
| download | KVIrc-e78652b987533dd1787e645d72abfb9f13ea2d7f.tar.gz KVIrc-e78652b987533dd1787e645d72abfb9f13ea2d7f.tar.bz2 KVIrc-e78652b987533dd1787e645d72abfb9f13ea2d7f.zip | |
ported buttongroup kvs class and init mlnedit port: objects modules now it is QT3_SUPPORT free :)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2465 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_multilineedit.h')
| -rw-r--r-- | src/modules/objects/class_multilineedit.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/modules/objects/class_multilineedit.h b/src/modules/objects/class_multilineedit.h index c3abb6afd..8dea88933 100644 --- a/src/modules/objects/class_multilineedit.h +++ b/src/modules/objects/class_multilineedit.h @@ -29,11 +29,11 @@ #include "class_widget.h" #include "object_macros.h" -class KviKvsObject_mledit : public KviKvsObject_widget +class KviKvsObject_textedit : public KviKvsObject_widget { Q_OBJECT public: - KVSO_DECLARE_OBJECT(KviKvsObject_mledit) + KVSO_DECLARE_OBJECT(KviKvsObject_textedit) public: QWidget * widget() { return (QWidget *)object(); }; protected: @@ -78,14 +78,21 @@ protected: bool functionsetUndoDepth(KviKvsObjectFunctionCall *c); bool functionisUndoRedoEnabled(KviKvsObjectFunctionCall *c); bool functionundoDepth(KviKvsObjectFunctionCall *c); + bool functionsetText(KviKvsObjectFunctionCall *c); - bool functionsetPointSize(KviKvsObjectFunctionCall *c); + bool functionsetHtmlText(KviKvsObjectFunctionCall *c); + bool functionsetPlainText(KviKvsObjectFunctionCall *c); + + + bool functionsetPointSize(KviKvsObjectFunctionCall *c); bool functionsetColor(KviKvsObjectFunctionCall *c); bool functionisUndoAvailable(KviKvsObjectFunctionCall *c); bool functionisRedoAvailable(KviKvsObjectFunctionCall *c); bool functionsetLinkUnderline(KviKvsObjectFunctionCall *c); bool functionsetFamily(KviKvsObjectFunctionCall *c); bool functionsetModified(KviKvsObjectFunctionCall *c); + bool functioisModified(KviKvsObjectFunctionCall *c); + bool functioninsertParagraph(KviKvsObjectFunctionCall *c); bool functionremoveParagraph(KviKvsObjectFunctionCall *c); bool functionsetOverwriteMode(KviKvsObjectFunctionCall *c); @@ -104,7 +111,10 @@ protected: bool functionlineOfChar(KviKvsObjectFunctionCall *c); bool functionlinesOfParagraph(KviKvsObjectFunctionCall *c); bool functionselectAll(KviKvsObjectFunctionCall *c); - + + + bool functionAddWidget(KviKvsObjectFunctionCall *c); + }; #endif //!_CLASS_MULTILINEEDIT_H_ |
