Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 157a672173864b68ac25ba5510b5226d > files > 34

kmuddy-devel-1.0-0.pre4.1mdv2009.1.i586.rpm

/***************************************************************************
                          cstatus.h - manages status bar
    This file is a part of KMuddy distribution.
                             -------------------
    begin                : Ne Jul 7 2002
    copyright            : (C) 2002 by Tomas Mecir
    email                : kmuddy@kmuddy.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 CSTATUS_H
#define CSTATUS_H

#include <kstatusbar.h>
#include <qobject.h>
#include <qtimer.h>

#include <cactionbase.h>
#include <kmuddy_export.h>

/**
 This class manages the status bar.
 @author Tomas Mecir
  */

class KMUDDY_EXPORT cStatus : public QObject, public cActionBase {
   Q_OBJECT
public: 
  cStatus (int sess, KStatusBar *statusbar);
  ~cStatus();
  void showTimer ();
  void hideTimer ();
  /** shows a message for 2 seconds */
  void showMessage (const QString & message);
  const QString connTimeString ();
  void displayVariables (const QString varText);
  void clearPartialLine ();
  KStatusBar *statusBar() { return sb; };

protected:
  virtual void eventNothingHandler (QString event, int session);
  virtual void eventStringHandler (QString event, int session,
      QString &par1, const QString &);
  virtual void eventIntHandler (QString event, int session, int par1, int par2);

  void dimensionsChanged (int x, int y);
  void timerStart ();
  void timerStop ();
  void timerReset ();
  void connected ();
  void disconnected ();
  void partialLine (const QString &line);
  void gotCommand ();

  KStatusBar *sb;
  QTimer *timer, *timer1;
  bool timing;
  int conntime;
  int idletime1;
  bool timerShown;
protected slots:
  void timerTick ();
  void timer1Tick ();
};

#endif