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.
tdesvn/src
Timothy Pearson 4ce4baa8d6
Update svn/sqlite cmake detection
13 years ago
..
askpass Finish rename from prior commit 13 years ago
helpers CMake fixes 13 years ago
icons Initial attempt at using the standard CMake system 13 years ago
kiosvn Merge cmake files 13 years ago
ksvnwidgets Merge cmake files 13 years ago
pics Initial attempt at using the standard CMake system 13 years ago
settings CMake updates 13 years ago
svnfrontend Merge cmake files 13 years ago
svnqt Update svn/sqlite cmake detection 13 years ago
tdesvnd Remove unneeded header globs 13 years ago
CMakeLists.txt Integrate merged cmake files 13 years ago
README Added KDE3 version of kdesvn 14 years ago
commandline.cpp Additional renaming of kde to tde 13 years ago
commandline.h Added KDE3 version of kdesvn 14 years ago
commandline_part.cpp CMake updates 13 years ago
commandline_part.h rename the following methods: 13 years ago
eventnumbers.h Port kdesvn to TQt4 13 years ago
main.cpp Additional renaming of kde to tde 13 years ago
tdesvn.cpp Finish rename from prior commit 13 years ago
tdesvn.desktop Finish rename from prior commit 13 years ago
tdesvn.h Finish rename from prior commit 13 years ago
tdesvn.lsm Finish rename from prior commit 13 years ago
tdesvn_events.cpp Finish rename from prior commit 13 years ago
tdesvn_events.h Finish rename from prior commit 13 years ago
tdesvn_part.cpp Merge cmake files 13 years ago
tdesvn_part.h Finish rename from prior commit 13 years ago
tdesvn_part.kcfg Add link to kcfg file 13 years ago
tdesvn_part.rc Finish rename from prior commit 13 years ago
tdesvnui.rc Finish rename from prior commit 13 years ago
tdesvnview.cpp CMake updates 13 years ago
tdesvnview.h CMake updates 13 years ago
urldlg.cpp rename the following methods: 13 years ago
urldlg.h rename the following methods: 13 years ago

README

-----------------------------------------------
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 KConfig XT to create your configuration dialogs and make 
them more maintainable.

For more details, consult :
http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.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-kparts/
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
KDEDIR=/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/