summaryrefslogtreecommitdiffstats
path: root/kexi/formeditor/widgetlibrary.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/formeditor/widgetlibrary.h')
-rw-r--r--kexi/formeditor/widgetlibrary.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kexi/formeditor/widgetlibrary.h b/kexi/formeditor/widgetlibrary.h
index 22d4c05f0..1c4a77a00 100644
--- a/kexi/formeditor/widgetlibrary.h
+++ b/kexi/formeditor/widgetlibrary.h
@@ -66,14 +66,14 @@ class KFORMEDITOR_EXPORT WidgetLibrary : public TQObject
By default (when supportedFactoryGroups is empty) only factories having empty
"X-KFormDesigner-FactoryGroup" field will be loaded.
Factory group names are case-insensitive. */
- WidgetLibrary(TQObject *tqparent=0, const TQStringList& supportedFactoryGroups = TQStringList());
+ WidgetLibrary(TQObject *parent=0, const TQStringList& supportedFactoryGroups = TQStringList());
virtual ~WidgetLibrary();
/**
* creates actions for widget creating
*/
- ActionList createWidgetActions(KXMLGUIClient* client, KActionCollection *tqparent,
+ ActionList createWidgetActions(KXMLGUIClient* client, KActionCollection *parent,
TQObject *receiver, const char *slot);
void addCustomWidgetActions(KActionCollection *col);
@@ -87,7 +87,7 @@ class KFORMEDITOR_EXPORT WidgetLibrary : public TQObject
* searches the right factory and creates a widget.
* \return the widget or 0 if something falid
*/
- TQWidget *createWidget(const TQCString &classname, TQWidget *tqparent, const char *name, Container *c,
+ TQWidget *createWidget(const TQCString &classname, TQWidget *parent, const char *name, Container *c,
int options = WidgetFactory::DefaultOptions);
bool createMenuActions(const TQCString &c, TQWidget *w, TQPopupMenu *menu,
@@ -101,7 +101,7 @@ class KFORMEDITOR_EXPORT WidgetLibrary : public TQObject
* - WidgetFactory::VerticalQt::Orientation
*/
WidgetFactory::CreateWidgetOptions showOrientationSelectionPopup(
- const TQCString &classname, TQWidget* tqparent, const TQPoint& pos);
+ const TQCString &classname, TQWidget* parent, const TQPoint& pos);
TQString internalProperty(const TQCString& classname, const TQCString& property);
@@ -122,7 +122,7 @@ class KFORMEDITOR_EXPORT WidgetLibrary : public TQObject
bool clearWidgetContent(const TQCString &classname, TQWidget *w);
bool saveSpecialProperty(const TQCString &classname, const TQString &name,
- const TQVariant &value, TQWidget *w, TQDomElement &parentNode, TQDomDocument &tqparent);
+ const TQVariant &value, TQWidget *w, TQDomElement &parentNode, TQDomDocument &parent);
bool readSpecialProperty(const TQCString &classname, TQDomElement &node, TQWidget *w,
ObjectTreeItem *item);
bool isPropertyVisible(const TQCString &classname, TQWidget *w,
@@ -149,7 +149,7 @@ class KFORMEDITOR_EXPORT WidgetLibrary : public TQObject
for a class described by \a winfo. The name can be displayed in
PropertyEditor. The name is retrieved from class' widget library.
If this library doesn't define description for such property,
- and there is a tqparent library for \a winfo defined, tqparent library
+ and there is a parent library for \a winfo defined, parent library
is asked for returning description string.
Eventually, if even this failed, empty string is returned.
@see WidgetFactory::propertyDescForName() */
@@ -157,7 +157,7 @@ class KFORMEDITOR_EXPORT WidgetLibrary : public TQObject
/*! \return The i18n'ed name of the property's value whose name is \a name.
Works in the same way as propertyDescForName(): if actual library
- does not define a description we are looking for, tqparent factory is asked
+ does not define a description we are looking for, parent factory is asked
to return such description.
Eventually, if even this failed, empty string is returned.
@see WidgetFactory::propertyDescForValue() */