00001 /*************************************************************************** 00002 cutestatusbar.h - description 00003 ------------------- 00004 begin : Wed Apr 14 2004 00005 copyright : (C) 2004 by Nick Thompson 00006 email : nickthompson@users.sourceforge.net 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 #ifndef __CUTESTATUSBAR_H__ 00018 #define __CUTESTATUSBAR_H__ 00019 00020 #include "ui/statusbar.h" 00021 00022 class CuteStatusBar : public StatusBar 00023 { 00024 Q_OBJECT 00025 public: 00026 CuteStatusBar( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 00027 ~CuteStatusBar(); 00028 public slots: 00029 void slotStatusBarMessage(const QString &text); 00030 void slotStatusBarInfo(const QString &text); 00031 void slotStatusBarLineCol(int line, int pos); 00032 }; 00033 00034 #endif