-rw-r--r-- | core/applets/vtapplet/vt.cpp | 39 | ||||
-rw-r--r-- | core/applets/vtapplet/vt.h | 1 |
2 files changed, 30 insertions, 10 deletions
diff --git a/core/applets/vtapplet/vt.cpp b/core/applets/vtapplet/vt.cpp index 6200447..4cc2d60 100644 --- a/core/applets/vtapplet/vt.cpp +++ b/core/applets/vtapplet/vt.cpp @@ -28,16 +28,8 @@ #include <linux/vt.h> #include "vt.h" -class VTPopupMenu : public QPopupMenu -{ - public: - VTPopupMenu( QWidget * parent=0, const char * name=0 ) : QPopupMenu( parent, name ) {}; - - virtual void activated() { qDebug( "VTPopupMenu::activated()" ); } -}; - VTApplet::VTApplet ( ) : QObject ( 0, "VTApplet" ), ref ( 0 ) { } @@ -91,9 +83,9 @@ QPopupMenu *VTApplet::popup ( QWidget* parent ) const int fd = ::open("/dev/tty0", O_RDWR); if ( fd == -1 ) return 0; if ( ioctl( fd, VT_GETSTATE, &vtstat ) == -1 ) return 0; - submenu = new VTPopupMenu( parent ); + submenu = new QPopupMenu( parent ); submenu->setCheckable( true ); for ( int i = 1; i < 10; ++i ) { int id = submenu->insertItem( QString::number( i ), 500+i ); @@ -101,22 +93,49 @@ QPopupMenu *VTApplet::popup ( QWidget* parent ) const } ::close( fd ); connect( submenu, SIGNAL( activated(int) ), this, SLOT( changeVT(int) ) ); + connect( submenu, SIGNAL( aboutToShow() ), this, SLOT( updateMenu() ) ); return submenu; } void VTApplet::changeVT( int index ) { - qDebug( "VTApplet::changeVT( %d )", index-500 ); + //qDebug( "VTApplet::changeVT( %d )", index-500 ); + int fd = ::open("/dev/tty0", O_RDWR); if ( fd == -1 ) return; ioctl( fd, VT_ACTIVATE, index-500 ); } +void VTApplet::updateMenu() +{ + //qDebug( "VTApplet::updateMenu()" ); + + int fd = ::open( "/dev/console", O_RDONLY ); + if ( fd == -1 ) return; + + for ( int i = 1; i < 10; ++i ) + { + int result = ioctl( fd, VT_DISALLOCATE, i ); + + /* + if ( result == -1 ) + qDebug( "VT %d disallocated == free", i ); + else + qDebug( "VT %d _not_ disallocated == busy", i ); + */ + + submenu->setItemEnabled( 500+i, result == -1 ); + } + + ::close( fd ); +} + + void VTApplet::activated() { qDebug( "VTApplet::activated()" ); } diff --git a/core/applets/vtapplet/vt.h b/core/applets/vtapplet/vt.h index 2df9791..6bdb9e0 100644 --- a/core/applets/vtapplet/vt.h +++ b/core/applets/vtapplet/vt.h @@ -42,8 +42,9 @@ public: virtual void activated (); public slots: virtual void changeVT( int index ); + virtual void updateMenu(); private: ulong ref; }; |