From 76fb8a57bf9fbae3a7073c8b0be1216f34adf99c Mon Sep 17 00:00:00 2001 From: zecke Date: Tue, 08 Oct 2002 16:37:37 +0000 Subject: SzModem: Make it compile remove = 0 from sendFile Add a Type to Sz so it could cover SX,SY too MetaFactory: take QCString name QString uiString so Carsten will be able to translate and users can switch Language without losing profiles Default It's aware of all Default/BuiltIn Plugins and adds them to the factory Common typedef bool BOOL TT is not using bool because it wasn't available at that time they use uint : 1... maybe we should change UINT_8 to Q_UINT8... MainWindow: give the factory to the config widget use Default IOLayer reload should take Profile not Config ConfigDialog: make use of Factory and do not do new MetaFactory.. i should make the c'tor private and add MainWindow as friend ProfileEditorDialog: Huge clean ups to the architecture. I still need to convert the widgets. Use the factory right --- (limited to 'noncore/apps/opie-console/metafactory.h') diff --git a/noncore/apps/opie-console/metafactory.h b/noncore/apps/opie-console/metafactory.h index 216de03..3f7ddce 100644 --- a/noncore/apps/opie-console/metafactory.h +++ b/noncore/apps/opie-console/metafactory.h @@ -14,37 +14,71 @@ #include "io_layer.h" #include "file_layer.h" #include "profile.h" -#include "profileeditorplugins.h" +#include "profiledialogwidget.h" class MetaFactory { public: - typedef ProfileEditorPlugin* (*configWidget)(QWidget* parent, Profile* prof); + typedef ProfileDialogWidget* (*configWidget)(const QString&, QWidget* parent); typedef IOLayer* (*iolayer)(const Profile& ); typedef FileTransferLayer* (*filelayer)(IOLayer*); MetaFactory(); ~MetaFactory(); - void addConfigWidgetFactory( const QString&, - const QString&, - configWidget ); - void addIOLayerFactory(const QString&, - iolayer ); - void addFileTransferLayer( const QString&, + /** + * add a ProfileDialogWidget to the factory + * name is the name shown to the user + */ + void addConnectionWidgetFactory( const QCString& internalName, + const QString& uiString, + configWidget ); + void addTerminalWidgetFactory ( const QCString& internalName, + const QString& name, + configWidget ); + + /** + * adds an IOLayer factory + */ + void addIOLayerFactory( const QCString&, + const QString&, + iolayer ); + + /** + * adds a FileTransfer Layer + */ + void addFileTransferLayer( const QCString& name, + const QString&, filelayer ); + + /* translated UI Strings */ QStringList ioLayers()const; - QStringList configWidgets()const; + QStringList connectionWidgets()const; + QStringList terminalWidgets()const; QStringList fileTransferLayers()const; IOLayer* newIOLayer( const QString&,const Profile& ); - ProfileEditorPlugin *newConfigPlugin ( const QString&, QWidget*, Profile* ); + ProfileDialogWidget *newConnectionPlugin ( const QString&, QWidget* ); + ProfileDialogWidget* newTerminalPlugin( const QString&, QWidget* ); + + /* + * internal takes the maybe translated + * public QString and maps it to the internal + * not translatable QCString + */ + QCString internal( const QString& )const; + + /* + * external takes the internal name + * it returns a translated name + */ + QString external( const QCString& )const; - QString name( const QString& ); private: - QMap m_confFact; + QMap m_strings; + QMap m_conFact; + QMap m_termFact; QMap m_layerFact; QMap m_fileFact; - QMap m_namemap; }; -- cgit v0.9.0.2