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.
knemo/src/knemod/interfacestatusdialog.h

91 lines
2.3 KiB

/* This file is part of KNemo
Copyright (C) 2004, 2006 Percy Leonhardt <percy@eris23.de>
KNemo is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
KNemo 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 Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef INTERFACESTATUSDIALOG_H
#define INTERFACESTATUSDIALOG_H
#include <tqwidget.h>
#include "interfacestatusdlg.h"
class TQTimer;
class Interface;
/**
* This class serves as the main window for KNemo. It handles the
* menus, toolbars, and status bars.
*
* @short Main window class
* @author Percy Leonhardt <percy@eris23.de>
*/
class InterfaceStatusDialog : public InterfaceStatusDlg
{
TQ_OBJECT
public:
/**
* Default Constructor
*/
InterfaceStatusDialog( Interface* interface,
TQWidget* parent = 0L, const char* name = 0L );
/**
* Default Destructor
*/
virtual ~InterfaceStatusDialog();
/**
* Implemented to store position.
*/
void hide();
void show();
/**
* Enable or disable the statistics group when the user turned statistics on or off.
*/
void setStatisticsGroupEnabled( bool enabled );
public slots:
/**
* Enable the network groups when the interface is connected
*/
void enableNetworkGroups( int );
/**
* Disable the network groups when the interface is not connected
*/
void disableNetworkGroups( int );
/**
* Update the statistics tab when data changed
*/
void statisticsChanged();
private slots:
void updateDialog();
private:
TQPoint mPos;
bool mPosInitialized;
TQTimer* mTimer;
Interface* mInterface;
};
#endif // INTERFACESTATUSDIALOG_H