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.
tdenetwork/wifi/kwifimanager.h

147 lines
4.1 KiB

/***************************************************************************
kwifimanager.h - a graphical interface for wireless LAN cards
-------------------
begin : Sam Apr 7 11:44:20 CEST 2001
copyright : (C) 2001 by Stefan Winter
email : mail@stefan-winter.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 KWIFIMANAGER_H
#define KWIFIMANAGER_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// include files for TQt
class TQLabel;
class TQTimer;
class TQPixmap;
class TQPushButton;
class TQStringList;
// include files for KDE
#include <tdemainwindow.h>
class KSystemTray;
class TDEToggleAction;
class TDEProcess;
// application specific includes
#include "interface_wireless.h"
#include "interface_dcop.h"
class Strength;
class Status;
class Picture;
class Locator;
class Speed;
class Statistics;
class NetworkScanning;
class Led;
extern TQStringList usedInterfacesList();
enum speedlevels
{ AUTO, M1, M2, M55, M11 };
enum packetmode
{ UNI, MULTI, BOTH };
enum cryptomodes
{ OPEN, RESTRICTED };
struct configuration_data
{
TQString net_name[5];
TQString disp_name[5];
bool managed[5];
bool crypto_enabled[5];
int active_crypto_key[5];
TQString active_key_string[5];
TQString crypto1[5], crypto2[5], crypto3[5], crypto4[5];
bool crypto_is_string1[5], crypto_is_string2[5], crypto_is_string3[5],
crypto_is_string4[5];
cryptomodes crypto_mode[5];
bool pm_enabled[5];
int sleep_time[5];
TQString sleep_time_string[5];
int wake_time[5];
TQString wake_time_string[5];
speedlevels bitrate[5];
packetmode packet[5];
};
class KWiFiManagerApp:public TDEMainWindow, virtual public dcop_interface
{
TQ_OBJECT
public:
KWiFiManagerApp (TQWidget * parent = 0, const char * name = 0);
~KWiFiManagerApp ();
TQString interface () const { return device ? device->get_interface_name() : TQString(); };
public:
bool startDocked() { return m_startDocked; }
public slots:
void slotToggleShowStrengthNumber ();
void slotDisableRadio ();
void slotFileQuit ();
void slotStartConfigEditor ();
void slotStartStatViewer ();
void slotToggleTric ();
void slotToggleStrengthCalc ();
void slotToggleStayInSystray ();
void slotChangeTrayIcon ();
void slotChangeWindowCaption ();
void slotLogESSID (TQString essid);
void slotTXPowerChanged ();
void slotShowStatsNoise ();
void slotNetworkScan();
void tricorder_beep ();
void slotDisablePowerProcessExited();
virtual bool queryClose();
virtual bool queryExit();
virtual void readProperties( TDEConfig* );
virtual void saveProperties( TDEConfig* );
private:
void initActions ();
void initView ();
Speed *speedmeter;
TQBoxLayout *bla;
TQLabel *profil;
Status *status;
Strength *strength;
Picture *pictogram;
Locator *location;
NetworkScanning* scanwidget;
TQWidget *view;
Statistics *statistik;
TDEToggleAction *fileDisableRadio;
TDEToggleAction *settingsUseAlternateCalc;
TDEToggleAction *settingsStayInSystrayOnClose;
TDEToggleAction *settingsAcousticScanning;
TDEToggleAction *settingsShowStatsNoise;
TDEToggleAction *settingsShowStrengthNumber;
KSystemTray *trayicon;
void init_whois_db ();
TQTimer *tricorder_trigger, *counter;
TQPixmap *pixmap;
Interface_wireless *device;
TQPushButton * scan;
Led *led;
TDEProcess* disablePower;
bool showStrength;
bool showStatsNoise;
bool m_startDocked;
bool m_shuttingDown;
int m_iconSize;
};
#endif /* KWIFIMANAGER_H */