diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 62 | ||||
-rw-r--r-- | src/README | 81 | ||||
-rw-r--r-- | src/pics/128x128/Makefile.am | 3 | ||||
-rw-r--r-- | src/pics/16x16/Makefile.am | 3 | ||||
-rw-r--r-- | src/pics/22x22/Makefile.am | 3 | ||||
-rw-r--r-- | src/pics/32x32/Makefile.am | 3 | ||||
-rw-r--r-- | src/pics/48x48/Makefile.am | 3 | ||||
-rw-r--r-- | src/pics/64x64/Makefile.am | 3 | ||||
-rw-r--r-- | src/pics/Makefile.am | 1 | ||||
-rw-r--r-- | src/servicemenus/Makefile.am | 18 | ||||
-rw-r--r-- | src/toolbar/.gitignore | 0 |
11 files changed, 0 insertions, 180 deletions
diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 23759fd..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,62 +0,0 @@ -## Makefile.am for d3lphin - -SUBDIRS = pics servicemenus - -# this is the program that gets installed. it's name is used for all -# of the other Makefile.am variables -bin_PROGRAMS = d3lphin - -# set the include path for X, qt and KDE -INCLUDES = $(all_includes) - -# the library search path. -d3lphin_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor - -# the libraries to link against. -d3lphin_LDADD = $(LIB_TDEFILE) $(LIB_TDEPRINT) -lkonq - -# which sources should be compiled for d3lphin -d3lphin_SOURCES = bookmarkselector.cpp bookmarkssettingspage.cpp \ - bookmarkssidebarpage.cpp detailsviewsettingspage.cpp dolphin.cpp dolphincontextmenu.cpp \ - dolphindetailsview.cpp dolphindetailsviewsettings.cpp dolphindirlister.cpp \ - dolphiniconsview.cpp dolphiniconsviewsettings.cpp dolphinsettings.cpp \ - dolphinsettingsbase.cpp dolphinsettingsdialog.cpp dolphinstatusbar.cpp dolphinview.cpp \ - editbookmarkdialog.cpp filterbar.cpp generalsettingspage.cpp iconsviewsettingspage.cpp \ - infosidebarpage.cpp itemeffectsmanager.cpp main.cpp pixmapviewer.cpp progressindicator.cpp \ - renamedialog.cpp settingspagebase.cpp sidebarpage.cpp sidebars.cpp sidebarssettings.cpp \ - statusbarmessagelabel.cpp statusbarspaceinfo.cpp undomanager.cpp urlbutton.cpp urlnavigator.cpp \ - urlnavigatorbutton.cpp viewproperties.cpp viewpropertiesdialog.cpp viewsettingspage.cpp - - -# these are the headers for your project -noinst_HEADERS = bookmarkselector.h bookmarkssettingspage.h \ - bookmarkssidebarpage.h detailsviewsettingspage.h dolphin.h dolphincontextmenu.h \ - dolphindetailsview.h dolphindetailsviewsettings.h dolphindirlister.h dolphiniconsview.h \ - dolphiniconsviewsettings.h dolphiniconsviewsettings.h iconsviewsettingspage.h dolphinsettings.h \ - dolphinsettingsbase.h dolphinsettingsdialog.h dolphinstatusbar.h dolphinview.h \ - editbookmarkdialog.h filterbar.h generalsettingspage.h iconsviewsettingspage.h \ - infosidebarpage.h itemeffectsmanager.h pixmapviewer.h renamedialog.h settingspagebase.h \ - sidebarpage.h sidebars.h statusbarmessagelabel.h statusbarspaceinfo.h undomanager.h \ - urlbutton.h urlnavigator.h urlnavigatorbutton.h viewproperties.h \ - viewpropertiesdialog.h viewsettingspage.h - -# let automoc handle all of the meta source files (moc) -METASOURCES = AUTO - -messages: rc.cpp - $(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp - $(XGETTEXT) *.cpp -o $(podir)/d3lphin.pot - - - -# this is where the kdelnk file will go -kdelnkdir = $(kde_appsdir)/System -xdg_apps_DATA = d3lphin.desktop - -# this is where the XML-GUI resource file goes -rcdir = $(kde_datadir)/d3lphin -rc_DATA = d3lphinui.rc - -KDE_ICON = AUTO -kde_icon_KDEICON = hi128-app-d3lphin.png hi16-app-d3lphin.png \ - hi22-app-d3lphin.png hi32-app-d3lphin.png hi48-app-d3lphin.png hi64-app-d3lphin.png diff --git a/src/README b/src/README deleted file mode 100644 index 39de8b2..0000000 --- a/src/README +++ /dev/null @@ -1,81 +0,0 @@ ------------------------------------------------ -Kde application framework template quickstart -Author: Thomas Nagy -Date: 2004-03-22 ------------------------------------------------ - -This README file explains you basic things for starting with -this application template. - - -** Building and installing ** - -* Build the configure script by "make -f Makefile.cvs" - -* To clean, use "make clean", and to clean everything -(remove the makefiles, etc), use "make distclean" - -* To distribute your program, try "make dist". -This will make a compact tarball archive of your release with the -necessary scripts inside. - -* Modifying the auto-tools scripts -for automake scripts there is an excellent tutorial there : -http://developer.kde.org/documentation/other/makefile_am_howto.html - -* Simplify your life : install the project in your home directory for -testing purposes. -./configure --prefix=/home/user/dummyfolder/ -In the end when you finished the development you can -rm -rf /home/user/dummyfolder/ -without fear. - - -** Technologies ** - -* Build the menus of your application easily -kde applications now use an xml file (*ui.rc file) to build the menus. -This allow a great customization of the application. However, when -programming the menu is shown only after a "make install" - -For more details, consult : -http://devel-home.kde.org/~larrosa/tutorial/p9.html -http://developer.kde.org/documentation/tutorials/xmlui/preface.html - -* Use TDEConfig XT to create your configuration dialogs and make -them more maintainable. - -For more details, consult : -http://developer.kde.org/documentation/tutorials/tdeconfigxt/tdeconfigxt.html - -* With KParts, you can embed other kde components in your program, or make your program -embeddable in other apps. For example, the kmplayer kpart can be called to play videos -in your app. - -For more details, consult : -http://www-106.ibm.com/developerworks/library/l-tdeparts/ -http://developer.kde.org/documentation/tutorials/dot/writing-plugins.html -http://developer.kde.org/documentation/tutorials/developing-a-plugin-structure/index.html - -* With dcop, you can control your app from other applications -Make sure to include K_DCOP and a kdcop: section in your .h file -http://developer.kde.org/documentation/tutorials/dot/dcopiface/dcop-interface.html - - -** Documentation ** - -* For the translations : -1. Download a patched gettext which can be found at: - http://public.kde.planetmirror.com/pub/kde/devel/gettext-kde/ -2. Install that gettext in ~/bin/ -3. cd ~/yourproject, export PATH=~/bin:$PATH, export -TDEDIR=/where_your_KDE3_is -4. make -f admin/Makefile.common package-messages -5. make package-messages -6. Translate the po files (not the pot!!) with kbabel or xemacs - -* Do not forget to write the documentation for your kde app -edit the documentation template index.docbook in doc/ - - - diff --git a/src/pics/128x128/Makefile.am b/src/pics/128x128/Makefile.am deleted file mode 100644 index 5c6f8a9..0000000 --- a/src/pics/128x128/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -iconsdir = $(kde_datadir)/d3lphin/icons/hicolor/128x128/actions -icons_DATA = preview.png - diff --git a/src/pics/16x16/Makefile.am b/src/pics/16x16/Makefile.am deleted file mode 100644 index 1fa272b..0000000 --- a/src/pics/16x16/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -iconsdir = $(kde_datadir)/d3lphin/icons/hicolor/16x16/actions -icons_DATA = preview.png editurl.png - diff --git a/src/pics/22x22/Makefile.am b/src/pics/22x22/Makefile.am deleted file mode 100644 index 245df4b..0000000 --- a/src/pics/22x22/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -iconsdir = $(kde_datadir)/d3lphin/icons/hicolor/22x22/actions -icons_DATA = preview.png - diff --git a/src/pics/32x32/Makefile.am b/src/pics/32x32/Makefile.am deleted file mode 100644 index 0d7f9f3..0000000 --- a/src/pics/32x32/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -iconsdir = $(kde_datadir)/d3lphin/icons/hicolor/32x32/actions -icons_DATA = preview.png - diff --git a/src/pics/48x48/Makefile.am b/src/pics/48x48/Makefile.am deleted file mode 100644 index 103382b..0000000 --- a/src/pics/48x48/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -iconsdir = $(kde_datadir)/d3lphin/icons/hicolor/48x48/actions -icons_DATA = preview.png - diff --git a/src/pics/64x64/Makefile.am b/src/pics/64x64/Makefile.am deleted file mode 100644 index c705496..0000000 --- a/src/pics/64x64/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -iconsdir = $(kde_datadir)/d3lphin/icons/hicolor/64x64/actions -icons_DATA = preview.png - diff --git a/src/pics/Makefile.am b/src/pics/Makefile.am deleted file mode 100644 index c26c4f5..0000000 --- a/src/pics/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = 128x128 64x64 48x48 32x32 22x22 16x16 diff --git a/src/servicemenus/Makefile.am b/src/servicemenus/Makefile.am deleted file mode 100644 index 45d121f..0000000 --- a/src/servicemenus/Makefile.am +++ /dev/null @@ -1,18 +0,0 @@ -servicemenusdir = $(kde_datadir)/d3lphin/servicemenus -servicemenus_DATA = compress.desktop amarok_addaspodcast.desktop amarok_append.desktop \ - amarok_play_audiocd.desktop ark_compress.desktop ark_extract.desktop ark_extract_subdir.desktop \ - d3lphin_su.desktop edit_as_root.desktop encryptfile.desktop encryptfolder.desktop \ - floppy_format.desktop imageconverter.desktop installfont.desktop jpegorient.desktop \ - k3b_audiocd_rip.desktop k3b_cd_copy.desktop k3b_create_audio_cd.desktop \ - k3b_create_video_cd.desktop k3b_dvd_copy.desktop k3b_handle_empty_cd.desktop \ - k3b_handle_empty_dvd.desktop k3b_videodvd_rip.desktop k3b_write_bin_image.desktop \ - k3b_write_iso_image.desktop kdesktopSetAsBackground.desktop konqgwenview.desktop \ - konsolehere.desktop mail_as_attachment.desktop media_eject.desktop media_mount.desktop \ - media_realfolder.desktop media_safelyremove.desktop media_unmount.desktop \ - open_in_digikam.desktop run_as_root.desktop smb2rdc.desktop text-ada-print.desktop \ - text-c++-print.desktop text-c++h-print.desktop text-ch-print.desktop text-css-print.desktop \ - text-diff-print.desktop text-html-print.desktop text-java-print.desktop text-log-print.desktop \ - text-makefile-print.desktop text-pas-print.desktop text-perl-print.desktop text-print.desktop \ - text-python-print.desktop text-tcl-print.desktop text-tex-print.desktop text-xml-print.desktop \ - text-xslt-print.desktop - diff --git a/src/toolbar/.gitignore b/src/toolbar/.gitignore deleted file mode 100644 index e69de29..0000000 --- a/src/toolbar/.gitignore +++ /dev/null |