Kexi API Documentation (2.0 alpha)

KexiPart::Part Class Reference

#include <kexipart.h>

Inheritance diagram for KexiPart::Part:

KexiFormPart KexiMacroPart KexiPart::StaticPart KexiQueryPart KexiReportPart KexiScriptPart KexiTablePart KexiSimplePrintingPart List of all members.

Detailed Description

The main class for kexi frontend parts like tables, queries, forms and reports.

Definition at line 65 of file kexipart.h.

Signals

void newObjectRequest (KexiPart::Info *info)

Public Member Functions

 Part (QObject *parent, const char *name, const QStringList &)
virtual ~Part ()
virtual bool execute (KexiPart::Item *item, QObject *sender=0)
int supportedViewModes () const
int supportedUserViewModes () const
KexiDialogBaseopenInstance (KexiMainWindow *win, KexiPart::Item &item, int viewMode=Kexi::DataViewMode, QMap< QString, QString > *staticObjectArgs=0)
virtual bool remove (KexiMainWindow *win, KexiPart::Item &item)
virtual tristate rename (KexiMainWindow *win, KexiPart::Item &item, const QString &newName)
virtual KexiDialogTempDatacreateTempData (KexiDialogBase *dialog)
virtual KexiViewBasecreateView (QWidget *parent, KexiDialogBase *dialog, KexiPart::Item &item, int viewMode=Kexi::DataViewMode, QMap< QString, QString > *staticObjectArgs=0)=0
QCString instanceName () const
QString instanceCaption () const
Infoinfo () const
GUIClientguiClient () const
GUIClientinstanceGuiClient (int mode=0) const
KActionCollection * actionCollectionForMode (int viewMode) const
const Kexi::ObjectStatuslastOperationStatus () const
virtual QString i18nMessage (const QCString &englishMessage, KexiDialogBase *dlg) const

Protected Slots

void slotCreate ()

Protected Member Functions

 Part (QObject *parent, StaticInfo *info)
 Used by StaticPart.
void createGUIClients (KexiMainWindow *win)
 Creates GUICLients for this part, attached to win This method is called from KexiMainWindow.
virtual void initPartActions ()
virtual void initInstanceActions ()
virtual KexiDB::SchemaDataloadSchemaData (KexiDialogBase *dlg, const KexiDB::SchemaData &sdata, int viewMode)
bool loadDataBlock (KexiDialogBase *dlg, QString &dataString, const QString &dataID=QString::null)
KActioncreateSharedAction (int mode, const QString &text, const QString &pix_name, const KShortcut &cut, const char *name, const char *subclassName=0)
KActioncreateSharedToggleAction (int mode, const QString &text, const QString &pix_name, const KShortcut &cut, const char *name)
KActioncreateSharedPartAction (const QString &text, const QString &pix_name, const KShortcut &cut, const char *name, const char *subclassName=0)
KActioncreateSharedPartToggleAction (const QString &text, const QString &pix_name, const KShortcut &cut, const char *name)
void setActionAvailable (const char *action_name, bool avail)
void setInfo (Info *info)
virtual void setupCustomPropertyPanelTabs (KTabWidget *tab, KexiMainWindow *mainWin)

Protected Attributes

QMap< QString, QStringm_names
 Set of i18n'd action names for, initialised on KexiPart::Part subclass ctor The names are useful because the same action can have other name for each part E.g.
int m_supportedViewModes
int m_supportedUserViewModes
Infom_info
GUIClientm_guiClient
QIntDict< GUIClientm_instanceGuiClients
KexiMainWindowm_mainWin
Kexi::ObjectStatus m_status
int m_registeredPartID
bool m_newObjectsAreDirty: 1
PartPrivate * d

Friends

class Manager
class ::KexiMainWindow
class ::KexiMainWindowImpl
class GUIClient


Constructor & Destructor Documentation

Part::Part QObject *  parent,
const char *  name,
const QStringList & 
 

Constructor.

Definition at line 90 of file kexipart.cpp.

References Kexi::DataViewMode, Kexi::DesignViewMode, m_info, m_mainWin, m_newObjectsAreDirty, m_supportedUserViewModes, and m_supportedViewModes.

Part::~Part  )  [virtual]
 

Destructor.

Definition at line 116 of file kexipart.cpp.

References d.

Part::Part QObject *  parent,
StaticInfo info
[protected]
 

Used by StaticPart.

Definition at line 103 of file kexipart.cpp.

References Kexi::DesignViewMode, m_info, m_mainWin, m_newObjectsAreDirty, m_supportedUserViewModes, and m_supportedViewModes.


Member Function Documentation

KActionCollection * Part::actionCollectionForMode int  viewMode  )  const
 

Returns:
action collection for mode viewMode.

Definition at line 164 of file kexipart.cpp.

References m_instanceGuiClients.

Referenced by KexiFormManager::action(), KexiReportPart::initInstanceActions(), and KexiFormPart::initInstanceActions().

void Part::createGUIClients KexiMainWindow win  )  [protected]
 

Creates GUICLients for this part, attached to win This method is called from KexiMainWindow.

Definition at line 121 of file kexipart.cpp.

References Kexi::AllViewModes, GUIClient, info(), initPartActions(), instanceGuiClient(), m_guiClient, m_instanceGuiClients, m_mainWin, m_names, m_supportedViewModes, KexiPart::nameForCreateAction(), Kexi::nameForViewMode(), and slotCreate().

KAction * Part::createSharedAction int  mode,
const QString text,
const QString pix_name,
const KShortcut &  cut,
const char *  name,
const char *  subclassName = 0
[protected]
 

Creates shared action for action collection declared for 'instance actions' of this part. See KexiSharedActionHost::createSharedAction() for details. Pass desired KAction subclass with subclassName (e.g. "KToggleAction") to have that subclass allocated instead just KAction (what is the default).

Definition at line 170 of file kexipart.cpp.

References KexiSharedActionHost::createSharedAction(), instanceGuiClient(), m_instanceGuiClients, and m_mainWin.

Referenced by createSharedToggleAction(), KexiScriptPart::initInstanceActions(), KexiQueryPart::initInstanceActions(), and KexiFormPart::initInstanceActions().

KAction * Part::createSharedPartAction const QString text,
const QString pix_name,
const KShortcut &  cut,
const char *  name,
const char *  subclassName = 0
[protected]
 

Creates shared action for action collection declared for 'part actions' of this part. See KexiSharedActionHost::createSharedAction() for details. Pass desired KAction subclass with subclassName (e.g. "KToggleAction") to have that subclass allocated instead just KAction (what is the default).

Definition at line 183 of file kexipart.cpp.

References KexiSharedActionHost::createSharedAction(), m_guiClient, and m_mainWin.

Referenced by createSharedPartToggleAction().

KAction * Part::createSharedPartToggleAction const QString text,
const QString pix_name,
const KShortcut &  cut,
const char *  name
[protected]
 

Convenience version of above method - creates shared toggle action for 'part actions' of this part.

Definition at line 199 of file kexipart.cpp.

References createSharedPartAction().

KAction * Part::createSharedToggleAction int  mode,
const QString text,
const QString pix_name,
const KShortcut &  cut,
const char *  name
[protected]
 

Convenience version of above method - creates shared toggle action.

Definition at line 193 of file kexipart.cpp.

References createSharedAction().

Referenced by KexiTablePart::initInstanceActions(), and KexiQueryPart::initInstanceActions().

KexiDialogTempData * Part::createTempData KexiDialogBase dialog  )  [virtual]
 

Creates and returns a new temporary data for a dialog dialog. This method is called on openInstance() once per dialog. Reimplement this to return KexiDialogTempData subclass instance. Default implemention just returns empty KexiDialogTempData object.

Reimplemented in KexiFormPart, KexiQueryPart, KexiReportPart, and KexiTablePart.

Definition at line 393 of file kexipart.cpp.

Referenced by openInstance().

virtual KexiViewBase* KexiPart::Part::createView QWidget parent,
KexiDialogBase dialog,
KexiPart::Item item,
int  viewMode = Kexi::DataViewMode,
QMap< QString, QString > *  staticObjectArgs = 0
[pure virtual]
 

Creates a new view for mode viewMode, item and parent. The view will be used inside dialog.

Implemented in KexiPart::StaticPart, KexiSimplePrintingPart, KexiFormPart, KexiMacroPart, KexiQueryPart, KexiReportPart, KexiScriptPart, and KexiTablePart.

virtual bool KexiPart::Part::execute KexiPart::Item item,
QObject *  sender = 0
[inline, virtual]
 

Try to execute the part. Implementations of this Part are able to overwrite this method to offer execution.

Parameters:
item The KexiPart::Item that should be executed.
sender The sender QObject which likes to execute this Part or NULL if there is no sender. The KFormDesigner uses this to pass the actual widget (e.g. the button that was pressed).
Returns:
true if execution was successfully else false.

Reimplemented in KexiMacroPart, and KexiScriptPart.

Definition at line 84 of file kexipart.h.

Referenced by KexiFormEventAction::activate(), KexiMacro::ExecuteAction::activate(), and KexiMainWindowImpl::executeItem().

GUIClient* KexiPart::Part::guiClient  )  const [inline]
 

Returns:
part's GUI Client, so you can create part-wide actions using this client.

Definition at line 170 of file kexipart.h.

Referenced by KexiReportPart::initInstanceActions().

QString Part::i18nMessage const QCString &  englishMessage,
KexiDialogBase dlg
const [virtual]
 

Returns:
i18n'd message translated from englishMessage. This method is useful for messages like: "<p>Table \"1\" has been modified.</p>", -- such messages can be accurately translated, while this could not: "<p>%1 \"2\" has been modified.</p>". See implementation of this method in KexiTablePart to see what strings are needed for translation.
Default implementation returns generic englishMessage. In special cases, englishMessage can start with ":", to indicate that empty string will be generated if a part does not offer a message for such englishMessage. This is used e.g. in KexiMainWindowImpl::closeDialog().

Reimplemented in KexiFormPart, KexiQueryPart, KexiReportPart, and KexiTablePart.

Definition at line 398 of file kexipart.cpp.

Referenced by KexiMainWindowImpl::getNewObjectInfo().

Info* KexiPart::Part::info  )  const [inline]
 

Definition at line 166 of file kexipart.h.

Referenced by KexiCSVImportDialog::accept(), KexiFormEventAction::activate(), KexiMacro::ExecuteAction::activate(), KexiMacro::DataTableAction::activate(), createGUIClients(), KexiMainWindowImpl::getNewObjectInfo(), KexiPart::GUIClient::GUIClient(), KexiPart::Manager::insertStaticPart(), and KexiProject::removeObject().

void Part::initInstanceActions  )  [protected, virtual]
 

Reimplemented in KexiFormPart, KexiMacroPart, KexiQueryPart, KexiReportPart, KexiScriptPart, and KexiTablePart.

Definition at line 381 of file kexipart.cpp.

Referenced by openInstance().

void Part::initPartActions  )  [protected, virtual]
 

Reimplemented in KexiFormPart, KexiMacroPart, KexiQueryPart, KexiReportPart, KexiScriptPart, and KexiTablePart.

Definition at line 377 of file kexipart.cpp.

Referenced by createGUIClients().

QString Part::instanceCaption  )  const
 

i18n'd instance name usable for displaying in gui as object's caption.

Todo:
move this to Info class when the name could be moved as localized property to service's .desktop file.

Definition at line 415 of file kexipart.cpp.

References m_names.

Referenced by KexiProject::createPartItem(), KexiMainWindowImpl::removeObject(), and KexiBrowser::slotContextMenu().

GUIClient* KexiPart::Part::instanceGuiClient int  mode = 0  )  const [inline]
 

Returns:
part's GUI Client, so you can create instance-wide actions using this client.

Definition at line 174 of file kexipart.h.

Referenced by createGUIClients(), and createSharedAction().

QCString Part::instanceName  )  const
 

i18n'd instance name usable for displaying in gui as object's name. The name is valid identifier - contains latin1 lowercase characters only.

Todo:
move this to Info class when the name could be moved as localized property to service's .desktop file.

Definition at line 408 of file kexipart.cpp.

References m_names, and KexiUtils::string2Identifier().

Referenced by KexiProject::createPartItem().

const Kexi::ObjectStatus& KexiPart::Part::lastOperationStatus  )  const [inline]
 

Definition at line 188 of file kexipart.h.

Referenced by KexiProject::openObject(), and KexiProject::renameObject().

bool Part::loadDataBlock KexiDialogBase dlg,
QString dataString,
const QString dataID = QString::null
[protected]
 

Definition at line 366 of file kexipart.cpp.

References Kexi::ObjectStatus::append(), KexiDialogBase::id(), m_status, and KexiDialogBase::mainWin().

Referenced by KexiQueryPart::loadSchemaData().

KexiDB::SchemaData * Part::loadSchemaData KexiDialogBase dlg,
const KexiDB::SchemaData sdata,
int  viewMode
[protected, virtual]
 

Reimplemented in KexiQueryPart, and KexiTablePart.

Definition at line 358 of file kexipart.cpp.

Referenced by KexiQueryPart::loadSchemaData(), and openInstance().

void KexiPart::Part::newObjectRequest KexiPart::Info info  )  [signal]
 

Referenced by slotCreate().

KexiDialogBase * Part::openInstance KexiMainWindow win,
KexiPart::Item item,
int  viewMode = Kexi::DataViewMode,
QMap< QString, QString > *  staticObjectArgs = 0
 

"Opens" an instance that the part provides, pointed by item in a mode viewMode. viewMode is one of Kexi::ViewMode enum. staticObjectArgs can be passed for static Kexi Parts.

Definition at line 236 of file kexipart.cpp.

References Kexi::ObjectStatus::append(), KexiPart::Item::caption(), Kexi::ObjectStatus::clearStatus(), createTempData(), d, KexiPart::Item::description(), Kexi::ObjectStatus::error(), KexiPart::Item::identifier(), initInstanceActions(), KexiDialogBase::itemIcon(), loadSchemaData(), m_info, KexiDialogBase::m_item, m_newObjectsAreDirty, KexiDialogBase::m_part, KexiDialogBase::m_schemaData, m_status, m_supportedViewModes, KexiDialogBase::m_supportedViewModes, KexiDialogBase::m_tempData, KexiDialogBase::mainWin(), KexiDialogBase::minimumSizeHint(), KexiPart::Item::name(), KexiPart::Item::neverSaved(), KexiPart::Info::projectPartID(), KexiDialogBase::registerDialog(), KexiDialogBase::selectedView(), KexiDB::SchemaData::setCaption(), KexiDB::SchemaData::setDescription(), KexiDialogBase::setId(), KexiDB::SchemaData::setName(), KexiDialogBase::sizeHint(), KexiDialogBase::stack(), Kexi::ObjectStatus::status(), KexiDialogBase::switchToViewMode(), Kexi::TextViewMode, and KexiDialogBase::updateCaption().

Referenced by KexiProject::openObject().

bool Part::remove KexiMainWindow win,
KexiPart::Item item
[virtual]
 

Removes any stored data pointed by item (example: table is dropped for table part). From now this data is inaccesible, and item disappear. You do not need to remove item, or remove object's schema stored in the database, beacuse this will be done automatically by KexiProject after successful call of this method. All object's data blocks are also automatically removed from database (from "kexi__objectdata" table). For this, a database connection associated with kexi project owned by win can be used.

Database transaction is started by KexiProject before calling this method, and it will be rolled back if you return false here. You shouldn't use by hand transactions here.

Default implementation just removes object from kexi__* system structures at the database backend using KexiDB::Connection::removeObject().

Reimplemented in KexiQueryPart, and KexiTablePart.

Definition at line 385 of file kexipart.cpp.

References KexiPart::Item::identifier(), KexiMainWindow::project(), and KexiDB::Connection::removeObject().

Referenced by KexiProject::removeObject().

tristate Part::rename KexiMainWindow win,
KexiPart::Item item,
const QString newName
[virtual]
 

Renames stored data pointed by item to newName (example: table name is altered in the database). For this, a database connection associated with kexi project owned by win can be used. You do not need to change item, and change object's schema stored in the database, beacuse this is automatically handled by KexiProject.

Database transaction is started by KexiProject before calling this method, and it will be rolled back if you return false here. You shouldn't use by hand transactions here.

Default implementation does nothing and returns true.

Reimplemented in KexiQueryPart, and KexiTablePart.

Definition at line 420 of file kexipart.cpp.

Referenced by KexiProject::renameObject().

void Part::setActionAvailable const char *  action_name,
bool  avail
[protected]
 

Definition at line 222 of file kexipart.cpp.

References m_instanceGuiClients, m_mainWin, and KexiSharedActionHost::setActionAvailable().

void KexiPart::Part::setInfo Info info  )  [inline, protected]
 

Definition at line 283 of file kexipart.h.

Referenced by KexiPart::Manager::part().

void Part::setupCustomPropertyPanelTabs KTabWidget tab,
KexiMainWindow mainWin
[protected, virtual]
 

This method can be reimplemented to setup additional tabs in the property editor panel. Default implementation does nothing. This method is called whenever current dialog (KexiDialogBase) is switched and type (mime type) of its contents differs from previous one. For example, if a user switched from Table Designer to Form Designer, additional tab containing Form Designer's object tree should be shown.

Reimplemented in KexiFormPart, and KexiTablePart.

Definition at line 404 of file kexipart.cpp.

void Part::slotCreate  )  [protected, slot]
 

Definition at line 353 of file kexipart.cpp.

References m_info, and newObjectRequest().

Referenced by createGUIClients().

int KexiPart::Part::supportedUserViewModes  )  const [inline]
 

Returns:
supported modes for dialogs created by this part in "user mode", i.e. a combination of Kexi::ViewMode enum elements. Set this member in your KexiPart subclass' ctor, if you need to override the default value that equals Kexi::DataViewMode. or 0 in case of Kexi::PartStaticPart object. This information is used to set supported view modes for every KexiDialogBase-derived object created by this KexiPart.

Definition at line 105 of file kexipart.h.

Referenced by KexiMainWindowImpl::openingAllowed().

int KexiPart::Part::supportedViewModes  )  const [inline]
 

Returns:
supported modes for dialogs created by this part, i.e. a combination of Kexi::ViewMode enum elements. Set this member in your KexiPart subclass' ctor, if you need to override the default value that equals Kexi::DataViewMode | Kexi::DesignViewMode, or Kexi::DesignViewMode in case of Kexi::PartStaticPart object. This information is used to set supported view modes for every KexiDialogBase-derived object created by this KexiPart.

Definition at line 97 of file kexipart.h.

Referenced by KexiMainWindowImpl::openObjectFromNavigator(), and KexiBrowser::slotSelectionChanged().


Friends And Related Function Documentation

friend class ::KexiMainWindow [friend]
 

Definition at line 326 of file kexipart.h.

friend class ::KexiMainWindowImpl [friend]
 

Definition at line 327 of file kexipart.h.

friend class GUIClient [friend]
 

Definition at line 328 of file kexipart.h.

Referenced by createGUIClients().

friend class Manager [friend]
 

Definition at line 325 of file kexipart.h.


Member Data Documentation

PartPrivate* KexiPart::Part::d [protected]
 

Definition at line 323 of file kexipart.h.

Referenced by openInstance(), and ~Part().

GUIClient* KexiPart::Part::m_guiClient [protected]
 

Definition at line 308 of file kexipart.h.

Referenced by createGUIClients(), and createSharedPartAction().

Info* KexiPart::Part::m_info [protected]
 

Definition at line 307 of file kexipart.h.

Referenced by openInstance(), Part(), and slotCreate().

QIntDict<GUIClient> KexiPart::Part::m_instanceGuiClients [protected]
 

Definition at line 309 of file kexipart.h.

Referenced by actionCollectionForMode(), createGUIClients(), createSharedAction(), and setActionAvailable().

KexiMainWindow* KexiPart::Part::m_mainWin [protected]
 

Definition at line 310 of file kexipart.h.

Referenced by createGUIClients(), createSharedAction(), createSharedPartAction(), KexiScriptPart::execute(), KexiMacroPart::execute(), KexiScriptPart::initPartActions(), KexiMacroPart::initPartActions(), Part(), and setActionAvailable().

QMap<QString,QString> KexiPart::Part::m_names [protected]
 

Set of i18n'd action names for, initialised on KexiPart::Part subclass ctor The names are useful because the same action can have other name for each part E.g.

"New table" vs "New query" can have different forms for some languages...

Definition at line 296 of file kexipart.h.

Referenced by createGUIClients(), instanceCaption(), instanceName(), KexiFormPart::KexiFormPart(), KexiMacroPart::KexiMacroPart(), KexiQueryPart::KexiQueryPart(), KexiReportPart::KexiReportPart(), KexiScriptPart::KexiScriptPart(), KexiSimplePrintingPart::KexiSimplePrintingPart(), and KexiTablePart::KexiTablePart().

bool KexiPart::Part::m_newObjectsAreDirty [protected]
 

True if newwly created, unsaved objects are dirty. False by default. You can change it in your subclass' constructor.

Definition at line 321 of file kexipart.h.

Referenced by KexiFormPart::KexiFormPart(), openInstance(), and Part().

int KexiPart::Part::m_registeredPartID [protected]
 

If you're implementing a new part, set this to value >0 in your ctor if you have well known (ie registered ID) for your part. So far, table, query, form, report and script part have defined their IDs (see KexiPart::ObjectTypes).

Definition at line 317 of file kexipart.h.

Referenced by KexiFormPart::KexiFormPart(), KexiMacroPart::KexiMacroPart(), KexiQueryPart::KexiQueryPart(), KexiReportPart::KexiReportPart(), KexiScriptPart::KexiScriptPart(), KexiTablePart::KexiTablePart(), and KexiPart::Manager::part().

Kexi::ObjectStatus KexiPart::Part::m_status [protected]
 

Definition at line 311 of file kexipart.h.

Referenced by loadDataBlock(), and openInstance().

int KexiPart::Part::m_supportedUserViewModes [protected]
 

Supported modes for dialogs created by this part in "user mode". The default is Kexi::DataViewMode. It is altered in classes like KexiSimplePrintingPart.

See also:
supportedUserViewModes()

Definition at line 305 of file kexipart.h.

Referenced by KexiSimplePrintingPart::KexiSimplePrintingPart(), and Part().

int KexiPart::Part::m_supportedViewModes [protected]
 

Supported modes for dialogs created by this part.

See also:
supportedViewModes()

Definition at line 300 of file kexipart.h.

Referenced by createGUIClients(), KexiFormPart::KexiFormPart(), KexiMacroPart::KexiMacroPart(), KexiQueryPart::KexiQueryPart(), KexiReportPart::KexiReportPart(), KexiScriptPart::KexiScriptPart(), KexiSimplePrintingPart::KexiSimplePrintingPart(), KexiTablePart::KexiTablePart(), openInstance(), and Part().


The documentation for this class was generated from the following files:
KDE Logo
This file is part of the documentation for Kexi 2.0 alpha.
Documentation copyright © 2002-2007 the Kexi Team.
Generated on Tue Apr 1 20:50:52 2008 by doxygen 1.4.2 written by Dimitri van Heesch, © 1997-2003