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.
tdeadmin/kpackage/managementWidget.h

230 lines
5.8 KiB

/*
** Copyright (C) 1999,2000 Toivo Pedaste <toivo@ucs.uwa.edu.au>
**
// Author: Damyan Pepper
//
// This widget is used to provide the management mode of ksetup.
// There are two subwidgets; firstly a tree list showing all the
// currently installed packages and secondly a display of the currently
// selected package's properties.
//
// There are also some control buttons which allow the currently
// selected package to be uninstalled or verified.
*/
/*
** 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.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program in a file called COPYING; if not, write to
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA 02110-1301, USA.
*/
/*
** Bug reports and questions can be sent to kde-devel@kde.org
*/
#ifndef MANAGEMENTWIDGET_H
#define MANAGEMENTWIDGET_H
#include "../config.h"
// Standard Headers
// TQt Headers
#include <tqframe.h>
#include <tqpushbutton.h>
#include <tqptrlist.h>
#include <tqstring.h>
#include <tqlayout.h>
#include <tqtabwidget.h>
#include <tqlabel.h>
#include <tqhbox.h>
// KDE headers
#include <kaction.h>
#include <klistview.h>
#include <klistviewsearchline.h>
// ksetup headers
#include "packageInfo.h"
#include "kplview.h"
class packageDisplayWidget;
class packageInfo;
class TQSplitter;
class KActionCollection;
class KToolBar;
class managementWidget;
class KpListViewSearchLine : public KListViewSearchLine
{
Q_OBJECT
TQ_OBJECT
public:
KpListViewSearchLine(TQWidget *parent, KpTreeList *listView);
~KpListViewSearchLine();
void updateSearch(const TQString &s = TQString());
private:
KpTreeList *list;
};
class managementWidget : public TQFrame
{
Q_OBJECT
TQ_OBJECT
///////////// METHODS ------------------------------------------------------
public:
managementWidget(TQWidget *parent);
// Constructor
~managementWidget();
// Destructor
KpTreeListItem *updatePackage(packageInfo *pki, bool install);
// update package in treelist
void readPSeparator();
void writePSeparator();
// config: position of panel seperator
void doChangePackage(packageInfo *p);
// emit change package
KpTreeListItem *search(TQString str, bool subStr, bool wrap,
bool start=FALSE);
protected:
void resizeEvent(TQResizeEvent *re);
// This is called when the widget is resized
private:
void setupWidgets();
// This sets up the sub-widgets
void setupInstButton();
// Set button for inst or uninst
void arrangeWidgets();
// This arranges the widgets in the window (should be called after a
// resize event)
void setupMultButton(int &cntInstall, int &cntUnInstall);
// Setup mult install/uninstall button appropriately
///////////// SLOTS ------------------------------------------------------
public slots:
void collectData(bool refresh);
// This collects data about all the packages installed.
// The list tree is filled with this data. Whenever something happens
// that requires data to be (re)collected a signal connected to this slot
// should be emitted. This function can also be called directly.
void rebuildListTree();
// This rebuilds the list tree. This would normally be called if the
// data contained about the packages has been changed (e.g. a verification
// failed / succeeded).
void uninstallMultClicked();
// This is called when uninstalling multiple packages
void uninstallSingleClicked();
// This is called when uninstalling a single package
void installSingleClicked();
// This is called when the install button has been clicked with single package
void installMultClicked();
// This is called when the install button has been clicked with multiple packages
void setInstallAction(KAction *a) { install_action = a; }
void setUninstallAction(KAction *a) { uninstall_action = a; }
void packageHighlighted(TQListViewItem *);
// This is called when a package has been highlighted in the list tree
void tabChanged(int);
// treelist display tab changed
void checkMarked();
// Count marked packages that can be installed/uninstalled
///////////// SIGNALS ------------------------------------------------------
///////////// DATA ---------------------------------------------------------
private:
TQPushButton *linstButton,*luinstButton,*instButton,*uinstButton;
// This button is used to (un)install the selected package
packageDisplayWidget *packageDisplay;
// This widget displays the package info / file-list
TQBoxLayout *top, *leftbox, *rightbox, *lbuttons, *rbuttons;
// These are the tqgeometry managers
TQFrame *leftpanel, *rightpanel;
// frame to put TQBox in
TQTabWidget *ltab;
// tab between various treelist displays
TQSplitter *vPan;
// veritcal panner between panels
KToolBar *searchToolBar;
TQPtrList<KpTreeListItem> selList;
// list for selected packages
TQString tType[4];
// identifiers for tree display
public:
TQPtrList<packageInfo> *allPackages;
// The list of packages
TQDict<packageInfo> *dirInstPackages;
// maps installed package name to package
TQDict<packageInfo> *dirUninstPackages;
// maps uninstalled package name to package
TQDict<packageInfo> *dirInfoPackages;
// maps Info package name to package
KpTreeList *treeList;
// This is the tree list where all the packages / groups are displayed
KpListViewSearchLine *searchLine;
// Widget for search treeList
KAction *install_action;
KAction *uninstall_action;
};
#endif