From d2ee5effeeb3d18672a68eb1046e9446e02b2b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Tue, 20 Jul 2021 16:50:47 +0200 Subject: Use common rules for build and install documentation and translations. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- CMakeLists.txt | 8 +- doc/CMakeLists.txt | 14 -- doc/de/CMakeLists.txt | 6 - doc/en/CMakeLists.txt | 8 - doc/man/CMakeLists.txt | 5 - doc/other/tdepacman-api/TDEpacman.html | 54 +++++ doc/other/tdepacman-api/all-globals.html | 34 ++++ doc/other/tdepacman-api/full-list-TDEpacman.html | 238 +++++++++++++++++++++++ doc/other/tdepacman-api/header-list.html | 35 ++++ doc/other/tdepacman-api/hier.html | 37 ++++ doc/other/tdepacman-api/index-long.html | 38 ++++ doc/other/tdepacman-api/index.html | 34 ++++ doc/other/tdepacman-api/tdepacman_h.html | 74 +++++++ doc/tdepacman-api/TDEpacman.html | 54 ----- doc/tdepacman-api/all-globals.html | 34 ---- doc/tdepacman-api/full-list-TDEpacman.html | 238 ----------------------- doc/tdepacman-api/header-list.html | 35 ---- doc/tdepacman-api/hier.html | 37 ---- doc/tdepacman-api/index-long.html | 38 ---- doc/tdepacman-api/index.html | 34 ---- doc/tdepacman-api/tdepacman_h.html | 74 ------- translations/CMakeLists.txt | 1 - translations/messages/CMakeLists.txt | 14 -- 23 files changed, 550 insertions(+), 594 deletions(-) delete mode 100644 doc/CMakeLists.txt delete mode 100644 doc/de/CMakeLists.txt delete mode 100644 doc/en/CMakeLists.txt delete mode 100644 doc/man/CMakeLists.txt create mode 100644 doc/other/tdepacman-api/TDEpacman.html create mode 100644 doc/other/tdepacman-api/all-globals.html create mode 100644 doc/other/tdepacman-api/full-list-TDEpacman.html create mode 100644 doc/other/tdepacman-api/header-list.html create mode 100644 doc/other/tdepacman-api/hier.html create mode 100644 doc/other/tdepacman-api/index-long.html create mode 100644 doc/other/tdepacman-api/index.html create mode 100644 doc/other/tdepacman-api/tdepacman_h.html delete mode 100644 doc/tdepacman-api/TDEpacman.html delete mode 100644 doc/tdepacman-api/all-globals.html delete mode 100644 doc/tdepacman-api/full-list-TDEpacman.html delete mode 100644 doc/tdepacman-api/header-list.html delete mode 100644 doc/tdepacman-api/hier.html delete mode 100644 doc/tdepacman-api/index-long.html delete mode 100644 doc/tdepacman-api/index.html delete mode 100644 doc/tdepacman-api/tdepacman_h.html delete mode 100644 translations/CMakeLists.txt delete mode 100644 translations/messages/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index c5107a8..c9a4dd4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,8 +72,12 @@ add_subdirectory( maps ) add_subdirectory( pics ) add_subdirectory( fonts ) add_subdirectory( tdepacman ) -tde_conditional_add_subdirectory( BUILD_DOC doc ) -tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations ) + + +##### other data ################################ + +tde_conditional_add_project_docs( BUILD_DOC ) +tde_conditional_add_project_translations( BUILD_TRANSLATIONS ) ##### write configure files diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt deleted file mode 100644 index 70d6348..0000000 --- a/doc/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * ) -string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" ) - -foreach( _dir ${_dirs} ) - if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} AND - EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/CMakeLists.txt ) - if( "${_dir}" STREQUAL "en" OR - "${_dir}" STREQUAL "man" OR - "${_linguas}" MATCHES "^;*$" OR - ";${_linguas};" MATCHES ";${_dir};" ) - add_subdirectory( ${_dir} ) - endif( ) - endif() -endforeach() diff --git a/doc/de/CMakeLists.txt b/doc/de/CMakeLists.txt deleted file mode 100644 index 0e17c6c..0000000 --- a/doc/de/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -file( GLOB _files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.html ) - -install( - FILES ${_files} tdepacman.gif - DESTINATION ${HTML_INSTALL_DIR}/de/${PROJECT_NAME} -) diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt deleted file mode 100644 index 94201a1..0000000 --- a/doc/en/CMakeLists.txt +++ /dev/null @@ -1,8 +0,0 @@ -file( GLOB _files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.html ) - -install( - FILES ${_files} tdepacman.gif screenshot.png - DESTINATION ${HTML_INSTALL_DIR}/en/${PROJECT_NAME} -) - -tde_create_handbook( DESTINATION ${PROJECT_NAME} ) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt deleted file mode 100644 index 8512250..0000000 --- a/doc/man/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ -INSTALL( - FILES ${PROJECT_NAME}.1 - DESTINATION ${MAN_INSTALL_DIR}/man1 - COMPONENT doc -) diff --git a/doc/other/tdepacman-api/TDEpacman.html b/doc/other/tdepacman-api/TDEpacman.html new file mode 100644 index 0000000..9ab446d --- /dev/null +++ b/doc/other/tdepacman-api/TDEpacman.html @@ -0,0 +1,54 @@ + + +class TDEpacman + + + + + + + +
+ + + +
+

class TDEpacman

+
+ * + This program is free software; you can redistribute it and/or modify * + it under the terms of the GNU General Public License as published by * + the Free Software Foundation; either version 2 of the License, or * + (at your option) any later version. More...
+
+ + + + +
Definition#include <tdepacman.h>
InheritsTQWidget (qt) [public ]
List of all Methods
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+

Public Methods


Detailed Description

+ * + This program is free software; you can redistribute it and/or modify * + it under the terms of the GNU General Public License as published by * + the Free Software Foundation; either version 2 of the License, or * + (at your option) any later version. * + * +*************************************************************************

+
 TDEpacman (TQWidget* parent=0, const char *name=0) +

TDEpacman

 ~TDEpacman () +

~TDEpacman


+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/other/tdepacman-api/all-globals.html b/doc/other/tdepacman-api/all-globals.html new file mode 100644 index 0000000..a65f90c --- /dev/null +++ b/doc/other/tdepacman-api/all-globals.html @@ -0,0 +1,34 @@ + + + Globals + + + + + + + +
+ + + +
+

Globals

+
+
+ + +
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+

Global member Documentation

+
+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/other/tdepacman-api/full-list-TDEpacman.html b/doc/other/tdepacman-api/full-list-TDEpacman.html new file mode 100644 index 0000000..4aafbfb --- /dev/null +++ b/doc/other/tdepacman-api/full-list-TDEpacman.html @@ -0,0 +1,238 @@ + + +class TDEpacman: All methods + + + + + + + +
+ + + +
+

class TDEpacman: All methods

+
+
+ + +
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TDEpacman - isEnabled
TDEpacman::TDEpacman
TQWidget::acceptDrops
TQWidget::adjustSize
TQWidget::autoMask
TQWidget::backgroundColor
TQWidget::backgroundColorChange
TQWidget::backgroundMode
TQWidget::backgroundOrigin
TQWidget::backgroundPixmap
TQWidget::backgroundPixmapChange
TQWidget::baseSize
TQWidget::caption
TQWidget::childrenRect
TQWidget::childrenRegion
TQWidget::clearFocus
TQWidget::clearMask
TQWidget::clearWFlags
TQWidget::clearWState
TQWidget::close
TQWidget::closeEvent
TQWidget::colorGroup
TQWidget::constPolish
TQWidget::create
TQWidget::cursor
TQWidget::customEvent
TQWidget::customWhatsThis
TQWidget::destroy
TQWidget::dragEnterEvent
TQWidget::dragLeaveEvent
TQWidget::dragMoveEvent
TQWidget::drawText
TQWidget::dropEvent
TQWidget::enabledChange
TQWidget::enterEvent
TQWidget::erase
TQWidget::event
TQWidget::extraData
TQWidget::find
TQWidget::focusData
TQWidget::focusInEvent
TQWidget::focusNextPrevChild
TQWidget::focusOutEvent
TQWidget::focusPolicy
TQWidget::focusProxy
TQWidget::focusWidget
TQWidget::font
TQWidget::fontChange
TQWidget::fontInfo
TQWidget::fontMetrics
TQWidget::fontPropagation
TQWidget::foregroundColor
TQWidget::frameGeometry
TQWidget::frameSize
TQWidget::geometry
TQWidget::getWFlags
TQWidget::getWState
TQWidget::grabKeyboard
TQWidget::grabMouse
TQWidget::hasFocus
TQWidget::hasMouseTracking
TQWidget::height
TQWidget::heightForWidth
TQWidget::hide
TQWidget::hideEvent
TQWidget::icon
TQWidget::iconText
TQWidget::isActiveWindow
TQWidget::isDesktop
TQWidget::isEnabled
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
isEnabledTo - setCRect
TQWidget::isEnabledTo
TQWidget::isEnabledToTLW
TQWidget::isFocusEnabled
TQWidget::isHidden
TQWidget::isMaximized
TQWidget::isMinimized
TQWidget::isModal
TQWidget::isPopup
TQWidget::isTopLevel
TQWidget::isUpdatesEnabled
TQWidget::isVisible
TQWidget::isVisibleTo
TQWidget::isVisibleToTLW
TQWidget::keyPressEvent
TQWidget::keyReleaseEvent
TQWidget::keyboardGrabber
TQWidget::layout
TQWidget::leaveEvent
TQWidget::lower
TQWidget::mapFrom
TQWidget::mapFromGlobal
TQWidget::mapFromParent
TQWidget::mapTo
TQWidget::mapToGlobal
TQWidget::mapToParent
TQWidget::maximumHeight
TQWidget::maximumSize
TQWidget::maximumWidth
TQWidget::metric
TQWidget::microFocusHint
TQWidget::minimumHeight
TQWidget::minimumSize
TQWidget::minimumSizeHint
TQWidget::minimumWidth
TQWidget::mouseDoubleClickEvent
TQWidget::mouseGrabber
TQWidget::mouseMoveEvent
TQWidget::mousePressEvent
TQWidget::mouseReleaseEvent
TQWidget::move
TQWidget::moveEvent
TQWidget::ownCursor
TQWidget::ownFont
TQWidget::ownPalette
TQWidget::paintEvent
TQWidget::palette
TQWidget::paletteChange
TQWidget::palettePropagation
TQWidget::parentWidget
TQWidget::polish
TQWidget::pos
TQWidget::raise
TQWidget::rect
TQWidget::releaseKeyboard
TQWidget::releaseMouse
TQWidget::repaint
TQWidget::reparent
TQWidget::resize
TQWidget::resizeEvent
TQWidget::scroll
TQWidget::setAcceptDrops
TQWidget::setActiveWindow
TQWidget::setAutoMask
TQWidget::setBackgroundColor
TQWidget::setBackgroundMode
TQWidget::setBackgroundOrigin
TQWidget::setBackgroundPixmap
TQWidget::setBaseSize
TQWidget::setCRect
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
setCaption - ~TDEpacman
TQWidget::setCaption
TQWidget::setCursor
TQWidget::setDisabled
TQWidget::setEnabled
TQWidget::setFRect
TQWidget::setFixedHeight
TQWidget::setFixedSize
TQWidget::setFixedWidth
TQWidget::setFocus
TQWidget::setFocusPolicy
TQWidget::setFocusProxy
TQWidget::setFont
TQWidget::setFontPropagation
TQWidget::setGeometry
TQWidget::setIcon
TQWidget::setIconText
TQWidget::setKeyCompression
TQWidget::setMask
TQWidget::setMaximumHeight
TQWidget::setMaximumSize
TQWidget::setMaximumWidth
TQWidget::setMicroFocusHint
TQWidget::setMinimumHeight
TQWidget::setMinimumSize
TQWidget::setMinimumWidth
TQWidget::setMouseTracking
TQWidget::setName
TQWidget::setPalette
TQWidget::setPalettePropagation
TQWidget::setSizeIncrement
TQWidget::setSizePolicy
TQWidget::setStyle
TQWidget::setTabOrder
TQWidget::setUpdatesEnabled
TQWidget::setWFlags
TQWidget::setWState
TQWidget::show
TQWidget::showEvent
TQWidget::showFullScreen
TQWidget::showMaximized
TQWidget::showMinimized
TQWidget::showNormal
TQWidget::size
TQWidget::sizeHint
TQWidget::sizeIncrement
TQWidget::sizePolicy
TQWidget::stackUnder
TQWidget::style
TQWidget::styleChange
TQWidget::testWFlags
TQWidget::testWState
TQWidget::topData
TQWidget::topLevelWidget
TQWidget::unsetCursor
TQWidget::unsetFont
TQWidget::unsetPalette
TQWidget::update
TQWidget::updateGeometry
TQWidget::updateMask
TQWidget::visibleRect
TQWidget::wheelEvent
TQWidget::width
TQWidget::winId
TQWidget::wmapper
TQWidget::x
TQWidget::y
TDEpacman::~TDEpacman

+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/other/tdepacman-api/header-list.html b/doc/other/tdepacman-api/header-list.html new file mode 100644 index 0000000..041d5cf --- /dev/null +++ b/doc/other/tdepacman-api/header-list.html @@ -0,0 +1,35 @@ + + + File Index + + + + + + + +
+ + + +
+

File Index

+
+
+ + +
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+
+
tdepacman.h - tdepacman.h
tdepacman.h
+
+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/other/tdepacman-api/hier.html b/doc/other/tdepacman-api/hier.html new file mode 100644 index 0000000..54561c5 --- /dev/null +++ b/doc/other/tdepacman-api/hier.html @@ -0,0 +1,37 @@ + + + Class Hierarchy + + + + + + + +
+ + + +
+

Class Hierarchy

+
+
+ + +
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+ +
+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/other/tdepacman-api/index-long.html b/doc/other/tdepacman-api/index-long.html new file mode 100644 index 0000000..6b03674 --- /dev/null +++ b/doc/other/tdepacman-api/index-long.html @@ -0,0 +1,38 @@ + + + Annotated List + + + + + + + +
+ + + +
+

Annotated List

+
+
+ + +
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+
TDEpacman + * + This program is free software; you can redistribute it and/or modify * + it under the terms of the GNU General Public License as published by * + the Free Software Foundation; either version 2 of the License, or * + (at your option) any later version.

+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/other/tdepacman-api/index.html b/doc/other/tdepacman-api/index.html new file mode 100644 index 0000000..f4e03d6 --- /dev/null +++ b/doc/other/tdepacman-api/index.html @@ -0,0 +1,34 @@ + + + Class Index + + + + + + + +
+ + + +
+

Class Index

+
+
+ + +
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+
+
TDEpacman - TDEpacman
TDEpacman

+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/other/tdepacman-api/tdepacman_h.html b/doc/other/tdepacman-api/tdepacman_h.html new file mode 100644 index 0000000..5d4a263 --- /dev/null +++ b/doc/other/tdepacman-api/tdepacman_h.html @@ -0,0 +1,74 @@ + + +Source: tdepacman.h + + + + + + + +
+ + + +
+

Source: tdepacman.h

+
+
+ + +
+
+ + + + +
Annotated List
Files
Globals
Hierarchy
Index
+
+/***************************************************************************
+                          tdepacman.h  -  description
+                             -------------------
+    begin                : Sam Jan 19 13:37:57 CET 2002
+    copyright            : (C) 1998-2003 by Jörg Thönnissen
+    email                : joe@dsite.de
+ ***************************************************************************/
+
+/***************************************************************************
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ ***************************************************************************/
+
+#ifndef TDEPACMAN_H
+#define TDEPACMAN_H
+
+#ifdef HAVE_CONFIG_H
+#include 
+#endif
+
+#include 
+#include 
+
+/** TDEpacman is the base class of the project */
+class TDEpacman : public TQWidget
+{
+  Q_OBJECT 
+  public:
+    /** construtor */
+    TDEpacman(TQWidget* parent=0, const char *name=0);
+    /** destructor */
+    ~TDEpacman();
+};
+
+#endif
+
+
+ + +
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
+ + diff --git a/doc/tdepacman-api/TDEpacman.html b/doc/tdepacman-api/TDEpacman.html deleted file mode 100644 index 9ab446d..0000000 --- a/doc/tdepacman-api/TDEpacman.html +++ /dev/null @@ -1,54 +0,0 @@ - - -class TDEpacman - - - - - - - -
- - - -
-

class TDEpacman

-
- * - This program is free software; you can redistribute it and/or modify * - it under the terms of the GNU General Public License as published by * - the Free Software Foundation; either version 2 of the License, or * - (at your option) any later version. More...
-
- - - - -
Definition#include <tdepacman.h>
InheritsTQWidget (qt) [public ]
List of all Methods
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
-

Public Methods


Detailed Description

- * - This program is free software; you can redistribute it and/or modify * - it under the terms of the GNU General Public License as published by * - the Free Software Foundation; either version 2 of the License, or * - (at your option) any later version. * - * -*************************************************************************

-
 TDEpacman (TQWidget* parent=0, const char *name=0) -

TDEpacman

 ~TDEpacman () -

~TDEpacman


- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/doc/tdepacman-api/all-globals.html b/doc/tdepacman-api/all-globals.html deleted file mode 100644 index a65f90c..0000000 --- a/doc/tdepacman-api/all-globals.html +++ /dev/null @@ -1,34 +0,0 @@ - - - Globals - - - - - - - -
- - - -
-

Globals

-
-
- - -
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
-

Global member Documentation

-
- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/doc/tdepacman-api/full-list-TDEpacman.html b/doc/tdepacman-api/full-list-TDEpacman.html deleted file mode 100644 index 4aafbfb..0000000 --- a/doc/tdepacman-api/full-list-TDEpacman.html +++ /dev/null @@ -1,238 +0,0 @@ - - -class TDEpacman: All methods - - - - - - - -
- - - -
-

class TDEpacman: All methods

-
-
- - -
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TDEpacman - isEnabled
TDEpacman::TDEpacman
TQWidget::acceptDrops
TQWidget::adjustSize
TQWidget::autoMask
TQWidget::backgroundColor
TQWidget::backgroundColorChange
TQWidget::backgroundMode
TQWidget::backgroundOrigin
TQWidget::backgroundPixmap
TQWidget::backgroundPixmapChange
TQWidget::baseSize
TQWidget::caption
TQWidget::childrenRect
TQWidget::childrenRegion
TQWidget::clearFocus
TQWidget::clearMask
TQWidget::clearWFlags
TQWidget::clearWState
TQWidget::close
TQWidget::closeEvent
TQWidget::colorGroup
TQWidget::constPolish
TQWidget::create
TQWidget::cursor
TQWidget::customEvent
TQWidget::customWhatsThis
TQWidget::destroy
TQWidget::dragEnterEvent
TQWidget::dragLeaveEvent
TQWidget::dragMoveEvent
TQWidget::drawText
TQWidget::dropEvent
TQWidget::enabledChange
TQWidget::enterEvent
TQWidget::erase
TQWidget::event
TQWidget::extraData
TQWidget::find
TQWidget::focusData
TQWidget::focusInEvent
TQWidget::focusNextPrevChild
TQWidget::focusOutEvent
TQWidget::focusPolicy
TQWidget::focusProxy
TQWidget::focusWidget
TQWidget::font
TQWidget::fontChange
TQWidget::fontInfo
TQWidget::fontMetrics
TQWidget::fontPropagation
TQWidget::foregroundColor
TQWidget::frameGeometry
TQWidget::frameSize
TQWidget::geometry
TQWidget::getWFlags
TQWidget::getWState
TQWidget::grabKeyboard
TQWidget::grabMouse
TQWidget::hasFocus
TQWidget::hasMouseTracking
TQWidget::height
TQWidget::heightForWidth
TQWidget::hide
TQWidget::hideEvent
TQWidget::icon
TQWidget::iconText
TQWidget::isActiveWindow
TQWidget::isDesktop
TQWidget::isEnabled
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
isEnabledTo - setCRect
TQWidget::isEnabledTo
TQWidget::isEnabledToTLW
TQWidget::isFocusEnabled
TQWidget::isHidden
TQWidget::isMaximized
TQWidget::isMinimized
TQWidget::isModal
TQWidget::isPopup
TQWidget::isTopLevel
TQWidget::isUpdatesEnabled
TQWidget::isVisible
TQWidget::isVisibleTo
TQWidget::isVisibleToTLW
TQWidget::keyPressEvent
TQWidget::keyReleaseEvent
TQWidget::keyboardGrabber
TQWidget::layout
TQWidget::leaveEvent
TQWidget::lower
TQWidget::mapFrom
TQWidget::mapFromGlobal
TQWidget::mapFromParent
TQWidget::mapTo
TQWidget::mapToGlobal
TQWidget::mapToParent
TQWidget::maximumHeight
TQWidget::maximumSize
TQWidget::maximumWidth
TQWidget::metric
TQWidget::microFocusHint
TQWidget::minimumHeight
TQWidget::minimumSize
TQWidget::minimumSizeHint
TQWidget::minimumWidth
TQWidget::mouseDoubleClickEvent
TQWidget::mouseGrabber
TQWidget::mouseMoveEvent
TQWidget::mousePressEvent
TQWidget::mouseReleaseEvent
TQWidget::move
TQWidget::moveEvent
TQWidget::ownCursor
TQWidget::ownFont
TQWidget::ownPalette
TQWidget::paintEvent
TQWidget::palette
TQWidget::paletteChange
TQWidget::palettePropagation
TQWidget::parentWidget
TQWidget::polish
TQWidget::pos
TQWidget::raise
TQWidget::rect
TQWidget::releaseKeyboard
TQWidget::releaseMouse
TQWidget::repaint
TQWidget::reparent
TQWidget::resize
TQWidget::resizeEvent
TQWidget::scroll
TQWidget::setAcceptDrops
TQWidget::setActiveWindow
TQWidget::setAutoMask
TQWidget::setBackgroundColor
TQWidget::setBackgroundMode
TQWidget::setBackgroundOrigin
TQWidget::setBackgroundPixmap
TQWidget::setBaseSize
TQWidget::setCRect
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
setCaption - ~TDEpacman
TQWidget::setCaption
TQWidget::setCursor
TQWidget::setDisabled
TQWidget::setEnabled
TQWidget::setFRect
TQWidget::setFixedHeight
TQWidget::setFixedSize
TQWidget::setFixedWidth
TQWidget::setFocus
TQWidget::setFocusPolicy
TQWidget::setFocusProxy
TQWidget::setFont
TQWidget::setFontPropagation
TQWidget::setGeometry
TQWidget::setIcon
TQWidget::setIconText
TQWidget::setKeyCompression
TQWidget::setMask
TQWidget::setMaximumHeight
TQWidget::setMaximumSize
TQWidget::setMaximumWidth
TQWidget::setMicroFocusHint
TQWidget::setMinimumHeight
TQWidget::setMinimumSize
TQWidget::setMinimumWidth
TQWidget::setMouseTracking
TQWidget::setName
TQWidget::setPalette
TQWidget::setPalettePropagation
TQWidget::setSizeIncrement
TQWidget::setSizePolicy
TQWidget::setStyle
TQWidget::setTabOrder
TQWidget::setUpdatesEnabled
TQWidget::setWFlags
TQWidget::setWState
TQWidget::show
TQWidget::showEvent
TQWidget::showFullScreen
TQWidget::showMaximized
TQWidget::showMinimized
TQWidget::showNormal
TQWidget::size
TQWidget::sizeHint
TQWidget::sizeIncrement
TQWidget::sizePolicy
TQWidget::stackUnder
TQWidget::style
TQWidget::styleChange
TQWidget::testWFlags
TQWidget::testWState
TQWidget::topData
TQWidget::topLevelWidget
TQWidget::unsetCursor
TQWidget::unsetFont
TQWidget::unsetPalette
TQWidget::update
TQWidget::updateGeometry
TQWidget::updateMask
TQWidget::visibleRect
TQWidget::wheelEvent
TQWidget::width
TQWidget::winId
TQWidget::wmapper
TQWidget::x
TQWidget::y
TDEpacman::~TDEpacman

- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/doc/tdepacman-api/header-list.html b/doc/tdepacman-api/header-list.html deleted file mode 100644 index 041d5cf..0000000 --- a/doc/tdepacman-api/header-list.html +++ /dev/null @@ -1,35 +0,0 @@ - - - File Index - - - - - - - -
- - - -
-

File Index

-
-
- - -
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
-
-
tdepacman.h - tdepacman.h
tdepacman.h
-
- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/doc/tdepacman-api/hier.html b/doc/tdepacman-api/hier.html deleted file mode 100644 index 54561c5..0000000 --- a/doc/tdepacman-api/hier.html +++ /dev/null @@ -1,37 +0,0 @@ - - - Class Hierarchy - - - - - - - -
- - - -
-

Class Hierarchy

-
-
- - -
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
- -
- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/doc/tdepacman-api/index-long.html b/doc/tdepacman-api/index-long.html deleted file mode 100644 index 6b03674..0000000 --- a/doc/tdepacman-api/index-long.html +++ /dev/null @@ -1,38 +0,0 @@ - - - Annotated List - - - - - - - -
- - - -
-

Annotated List

-
-
- - -
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
-
TDEpacman - * - This program is free software; you can redistribute it and/or modify * - it under the terms of the GNU General Public License as published by * - the Free Software Foundation; either version 2 of the License, or * - (at your option) any later version.

- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/doc/tdepacman-api/index.html b/doc/tdepacman-api/index.html deleted file mode 100644 index f4e03d6..0000000 --- a/doc/tdepacman-api/index.html +++ /dev/null @@ -1,34 +0,0 @@ - - - Class Index - - - - - - - -
- - - -
-

Class Index

-
-
- - -
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
-
-
TDEpacman - TDEpacman
TDEpacman

- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/doc/tdepacman-api/tdepacman_h.html b/doc/tdepacman-api/tdepacman_h.html deleted file mode 100644 index 5d4a263..0000000 --- a/doc/tdepacman-api/tdepacman_h.html +++ /dev/null @@ -1,74 +0,0 @@ - - -Source: tdepacman.h - - - - - - - -
- - - -
-

Source: tdepacman.h

-
-
- - -
-
- - - - -
Annotated List
Files
Globals
Hierarchy
Index
-
-/***************************************************************************
-                          tdepacman.h  -  description
-                             -------------------
-    begin                : Sam Jan 19 13:37:57 CET 2002
-    copyright            : (C) 1998-2003 by Jörg Thönnissen
-    email                : joe@dsite.de
- ***************************************************************************/
-
-/***************************************************************************
- *                                                                         *
- *   This program is free software; you can redistribute it and/or modify  *
- *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- ***************************************************************************/
-
-#ifndef TDEPACMAN_H
-#define TDEPACMAN_H
-
-#ifdef HAVE_CONFIG_H
-#include 
-#endif
-
-#include 
-#include 
-
-/** TDEpacman is the base class of the project */
-class TDEpacman : public TQWidget
-{
-  Q_OBJECT 
-  public:
-    /** construtor */
-    TDEpacman(TQWidget* parent=0, const char *name=0);
-    /** destructor */
-    ~TDEpacman();
-};
-
-#endif
-
-
- - -
Generated by: jth on tim on Sat Jan 19 13:38:55 2002, using kdoc 2.0a53.
- - diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt deleted file mode 100644 index 42b186a..0000000 --- a/translations/CMakeLists.txt +++ /dev/null @@ -1 +0,0 @@ -tde_auto_add_subdirectories() diff --git a/translations/messages/CMakeLists.txt b/translations/messages/CMakeLists.txt deleted file mode 100644 index 75c89f8..0000000 --- a/translations/messages/CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ -file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po ) -string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" ) - -foreach( _po ${po_files} ) - get_filename_component( _lang ${_po} NAME_WE ) - if( "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_lang};" ) - if( "${_po}" MATCHES "^([^/]*)/.*" ) - string( REGEX REPLACE "^([^/]*)/.*" "\\1" _component "${_po}" ) - else( ) - set( _component "${PROJECT_NAME}" ) - endif( ) - tde_create_translation( FILES ${_po} LANG ${_lang} OUTPUT_NAME ${_component} ) - endif( ) -endforeach( ) -- cgit v1.2.3