Index: branches/work/kpilot/port-to-trunk/kpilot/dbFlagsEditor_base.ui.h =================================================================== --- branches/work/kpilot/port-to-trunk/kpilot/dbFlagsEditor_base.ui.h (revision 660700) +++ branches/work/kpilot/port-to-trunk/kpilot/dbFlagsEditor_base.ui.h (nonexistent) @@ -1,15 +0,0 @@ -/**************************************************************************** -** ui.h extension file, included from the uic-generated form implementation. -** -** If you wish to add, delete or rename functions or slots use -** Qt Designer which will update this file, preserving your code. Create an -** init() function in place of a constructor, and a destroy() function in -** place of a destructor. -*****************************************************************************/ -#include -class KTimeWidget : public QWidget -{ -public: - KTimeWidget(QWidget *p, const char *n) : QWidget(p,n) {}; -} ; - Property changes on: branches/work/kpilot/port-to-trunk/kpilot/dbFlagsEditor_base.ui.h ___________________________________________________________________ Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -Author Date Id Revision \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/x-chdr \ No newline at end of property Index: branches/work/kpilot/port-to-trunk/kpilot/CMakeLists.txt =================================================================== --- branches/work/kpilot/port-to-trunk/kpilot/CMakeLists.txt (revision 660700) +++ branches/work/kpilot/port-to-trunk/kpilot/CMakeLists.txt (revision 660701) @@ -1,161 +1,161 @@ # Don't forget to include output directory, otherwise # the UI file won't be wrapped! include_directories( ${CMAKE_BINARY_DIR}/lib ${CMAKE_SOURCE_DIR}/lib ${CMAKE_CURRENT_BINARY_DIR} ) add_subdirectory(icons) ### # # Settings (KConfigXT) shared between various parts of KPilot # set(settings_SRC kpilotConfig.cc ) kde4_add_kcfg_files(settings_SRC kpilotSettings.kcfgc) ### # # The KCM for KPilot, used by the config dialog and the embedding in Kontact # set(kcmpilot_SRCS ${settings_SRC} kpilotConfigWizard.cc dbSelectionDialog.cc kpilotConfigDialog.cc conduitConfigDialog.cc kpilotProbeDialog.cc ) set(kcmpilot_KCFGS kpilotConfigWizard_address.kcfgc #kpilotConfigWizard_notes.kcfgc kpilotConfigWizard_vcal.kcfgc ) set(kcmpilot_UIS kpilotConfigDialog_device.ui kpilotConfigDialog_sync.ui kpilotConfigDialog_startup.ui kpilotConfigDialog_viewers.ui kpilotConfigDialog_backup.ui kpilotConfigWizard_user.ui kpilotConfigWizard_app.ui dbSelection_base.ui ) kde4_add_ui3_files(kcmpilot_SRCS ${kcmpilot_UIS}) kde4_add_kcfg_files(kcmpilot_SRCS ${kcmpilot_KCFGS} ) QT4_ADD_DBUS_INTERFACE(kcmpilot_SRCS org.kde.kpilot.daemon.xml kpilot_daemon_interface) kde4_automoc(${kcmpilot_SRCS}) kde4_add_plugin(kcm_kpilot ${kcmpilot_SRCS}) target_link_libraries(kcm_kpilot kpilot ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS}) ### # # Most simple daemon-like application: kpilotTest, which # runs whatever the command-line tells it to. # set(kpilotTest_SRCS ${settings_SRC} hotSync.cc logWidget.cc pilotComponent.cc main-test.cc ) # Acts as a receiver for DCOP log messages qt4_add_dbus_adaptor(kpilotTest_SRCS org.kde.kpilot.logger.xml logFile.h LogFile ) #kde4_automoc(${kpilotTest_SRCS}) #kde4_add_executable(kpilotTest ${kpilotTest_SRCS}) #target_link_libraries(kpilotTest ${QT_LIBRARIES} kpilot ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS}) ### # # The real KPilot daemon. # set(kpilotDaemon_SRCS ${settings_SRC} hotSync.cc fileInstaller.cc internalEditorAction.cc logFile.cc pilotDaemon.cc ) qt4_add_dbus_adaptor( kpilotDaemon_SRCS org.kde.kpilot.logger.xml logFile.h LogFile ) qt4_add_dbus_adaptor( kpilotDaemon_SRCS org.kde.kpilot.daemon.xml pilotDaemon.h PilotDaemon ) QT4_ADD_DBUS_INTERFACE(kpilotDaemon_SRCS org.kde.kpilot.logger.xml logfile_interface) QT4_ADD_DBUS_INTERFACE(kpilotDaemon_SRCS org.kde.kpilot.kpilot.xml kpilot_interface) #kde4_automoc(${kpilotDaemon_SRCS}) #kde4_add_executable(kpilotDaemon ${kpilotDaemon_SRCS}) #target_link_libraries(kpilotDaemon ${QT_LIBRARIES} kpilot ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS}) ### # # The KPilot executable (viewer / editor / configuration). # set(kpilot_bin_SRCS ${settings_SRC} logWidget.cc kpilot.cc dbviewerWidget.cc dbFlagsEditor.cc dbRecordEditor.cc dbAppInfoEditor.cc pilotComponent.cc memoWidget.cc addressWidget.cc addressEditor.cc datebookWidget.cc todoWidget.cc todoEditor.cc fileInstaller.cc fileInstallWidget.cc listItems.cc ) set(kpilot_UIS - #dbFlagsEditor_base.ui + dbFlagsEditor_base.ui todoEditor_base.ui ) kde4_add_ui3_files(kpilot_bin_SRCS ${kpilot_UIS}) kde4_automoc(${kpilot_bin_SRCS}) # Talks to the daemon. Listens as itself. qt4_add_dbus_adaptor( kpilot_bin_SRCS org.kde.kpilot.logger.xml logFile.h LogFile ) qt4_add_dbus_adaptor( kpilot_bin_SRCS org.kde.kpilot.kpilot.xml kpilot.h KPilotInstaller ) QT4_ADD_DBUS_INTERFACE(kpilot_bin_SRCS org.kde.kpilot.daemon.xml daemon_interface) kde4_add_executable(kpilot_bin ${kpilot_bin_SRCS}) target_link_libraries(kpilot_bin ${QT_LIBRARIES} kpilot ${KDE4_KDE3SUPPORT_LIBS} ${KDE4_KUTILS_LIBS} ${KDE4_KDEUI_LIBS} ${KDE4_KIO_LIBS}) set_target_properties(kpilot_bin PROPERTIES OUTPUT_NAME kpilot) ######################### INSTALL STUFF ####################################### #install(TARGETS kcm_kpilot DESTINATION ${PLUGIN_INSTALL_DIR} ) #install(TARGETS kpilot_bin kpilotDaemon DESTINATION ${BIN_INSTALL_DIR}) install( FILES kpilotui.rc DESTINATION ${DATA_INSTALL_DIR}/kpilot) install(FILES kpilot.desktop kpilotdaemon.desktop DESTINATION ${XDG_APPS_DIR}) install(FILES kpilotconduit.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR}) install(FILES kpilot_config.desktop DESTINATION ${SERVICES_INSTALL_DIR}) install ( FILES kpilot.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR}) install(FILES kpilot.kcfg DESTINATION ${KCFG_INSTALL_DIR}) Index: branches/work/kpilot/port-to-trunk/kpilot/dbFlagsEditor_base.ui =================================================================== --- branches/work/kpilot/port-to-trunk/kpilot/dbFlagsEditor_base.ui (revision 660700) +++ branches/work/kpilot/port-to-trunk/kpilot/dbFlagsEditor_base.ui (revision 660701) @@ -1,376 +1,375 @@ DBFlagsEditorWidget DBFlagsEditorWidget 0 0 465 353 unnamed fDBNameLabel 4 5 0 0 Database &name: fDBName fCreatorLabel 4 5 0 0 &Creator: fCreator fTypeLabel 4 5 0 0 &Type: fType fType 4 fCreator 4 fDBFlagsGroup Database Flags unnamed fRessourceDB &Ressource database fReadOnly Rea&d-only fBackupDB Database is &backed up fCopyProtect Copy &protected spacer4 Vertical Expanding 20 20 fMiscFlagsGroup Misc Flags unnamed spacer3 Vertical Expanding 21 60 fReset Reset after &installation fExcludeDB E&xclude from sync fTimeStampGroup Time Stamps unnamed fCreationLabel 4 5 0 0 Cr&eation time: fCreationDate fModificationlabel &Modification time: fModificationDate fBackupLabel Back&up time: fBackupDate - + fCreationTime 4 5 0 0 StrongFocus - + fModificationTime StrongFocus - + fBackupTime StrongFocus fBackupDate StrongFocus fModificationDate StrongFocus fCreationDate StrongFocus spacer1 Horizontal Expanding 180 21 fDBName 34 spacer2 Vertical Expanding 31 70 fDBName fType fCreator fRessourceDB fReadOnly fBackupDB fCopyProtect fReset fExcludeDB fCreationDate fCreationTime fModificationDate fModificationTime fBackupDate fBackupTime - dbFlagsEditor_base.ui.h kdatewidget.h