You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
741 B
26 lines
741 B
|
|
/** An object that supports signals and slots. */
|
|
class QObject {};
|
|
/** Base-class of all widgets. */
|
|
class QWidget : public QObject {};
|
|
/** A widget that has a frame. */
|
|
class QFrame : public QWidget {};
|
|
|
|
/** Namespace for the KParts framework. */
|
|
namespace KParts {
|
|
/** A base-class for plugins that extend a KPart. */
|
|
class Plugin : public QObject, public XMLGUIClient {};
|
|
/** A base-class for KParts. */
|
|
class Part : public QObject, public XMLGUIClient {};
|
|
/** A base-class for KParts that provide a read-only view. */
|
|
class ReadOnlyPart : public Part {};
|
|
};
|
|
|
|
/** Namespace for the KJS interpreter library. */
|
|
namespace KJS {
|
|
/** Provides the implementation for a KJS object. */
|
|
class ObjectImp {};
|
|
};
|
|
|
|
|