From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdeui/kauthicon.cpp | 203 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 203 insertions(+) create mode 100644 tdeui/kauthicon.cpp (limited to 'tdeui/kauthicon.cpp') diff --git a/tdeui/kauthicon.cpp b/tdeui/kauthicon.cpp new file mode 100644 index 000000000..fa49a1d26 --- /dev/null +++ b/tdeui/kauthicon.cpp @@ -0,0 +1,203 @@ +/* This file is part of the KDE libraries + Copyright (c) 1999 Preston Brown + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2 as published by the Free Software Foundation. + + This library 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. +*/ +/* + * KAuthIcon - an icon which shows whether privileges are in effect + */ + +#include // For getuid + +#include +#include +#include + +#include + +#include "kauthicon.h" + +/* XPM */ +static const char * const lock_xpm[] = { +"22 22 5 1", +" c None", +". c #808080", +"+ c #000000", +"@ c #FFFFFF", +"# c #C0C0C0", +" ", +" ", +" ", +" ", +" .+++. ", +" .@@@.+ ", +" ..@+++@.. ", +" +@+...+@+ ", +" +@+. +@+. ", +" +@+. +@+. ", +" +++++++++++ ", +" +#########+. ", +" +#.......#+. ", +" +#@@@@@@@#+. ", +" +#.......#+. ", +" +#########+. ", +" +++++++++++. ", +" ........... ", +" ", +" ", +" ", +" "}; + +/* XPM */ +static const char * const openlock_xpm[] = { +"22 22 5 1", +" c None", +". c #808080", +"+ c #000000", +"@ c #FFFFFF", +"# c #C0C0C0", +" ", +" ", +" .+++. ", +" .@@@.+ ", +" ..@+++@.. ", +" +@+...+@+ ", +" +@+. +@+. ", +" +@+. +@+. ", +" +++. +@+. ", +" ... +@+. ", +" +@+. ", +" +++++++++++ ", +" +#########+. ", +" +#.......#+. ", +" +#@@@@@@@#+. ", +" +#.......#+. ", +" +#########+. ", +" +++++++++++. ", +" ........... ", +" ", +" ", +" "}; + +KAuthIcon::KAuthIcon(TQWidget *parent, const char *name) + : TQWidget(parent, name), + lockPM( const_cast< const char** >( lock_xpm)), + openLockPM( const_cast< const char** >(openlock_xpm)) +{ + lockText = i18n("Editing disabled"); + openLockText = i18n("Editing enabled"); + + lockBox = new TQLabel(this); + lockBox->setFrameStyle(TQFrame::WinPanel|TQFrame::Raised); + lockBox->setPixmap(lockPM); + lockBox->setFixedSize(lockBox->tqsizeHint()); + + lockLabel = new TQLabel(this); + lockLabel->setFrameStyle(TQFrame::NoFrame); + + // set fixed size of this frame to whichever phrase is longer + if (lockLabel->fontMetrics().boundingRect(lockText).width() > + lockLabel->fontMetrics().boundingRect(openLockText).width()) + lockLabel->setText(lockText); + else + lockLabel->setText(openLockText); + lockLabel->tqsetAlignment(AlignCenter); + lockLabel->setMinimumSize(lockLabel->tqsizeHint()); + lockLabel->setText(lockText); + + layout = new TQHBoxLayout(this); + + layout->addWidget(lockBox, 0, AlignLeft|AlignVCenter); + layout->addSpacing(5); + layout->addWidget(lockLabel, 0, AlignRight|AlignVCenter); + + layout->activate(); + resize(tqsizeHint()); +} + +KAuthIcon::~KAuthIcon() +{ +} + + +TQSize KAuthIcon::tqsizeHint() const +{ + return layout->tqminimumSize(); +} + + +/************************************************************************/ + +KRootPermsIcon::KRootPermsIcon(TQWidget *parent, const char *name) + : KAuthIcon(parent, name) +{ + updateStatus(); +} + + +KRootPermsIcon::~KRootPermsIcon() +{ +} + +void KRootPermsIcon::updateStatus() +{ + const bool newRoot = (geteuid() == 0); + lockBox->setPixmap(newRoot ? openLockPM : lockPM); + lockLabel->setText(newRoot ? openLockText : lockText); + update(); + if (root != newRoot) { + root = newRoot; + emit authChanged(newRoot); + } +} + +/************************************************************************/ + +KWritePermsIcon::KWritePermsIcon(const TQString & fileName, + TQWidget *parent, const char *name) + : KAuthIcon(parent, name) +{ + fi.setFile(fileName); + updateStatus(); +} + + +KWritePermsIcon::~KWritePermsIcon() +{ +} + +void KWritePermsIcon::updateStatus() +{ + bool newwrite; + newwrite = fi.isWritable(); + lockBox->setPixmap(newwrite ? openLockPM : lockPM); + lockLabel->setText(newwrite ? openLockText : lockText); + update(); + if (writable != newwrite) { + writable = newwrite; + emit authChanged(newwrite); + } +} + +void KAuthIcon::virtual_hook( int, void* ) +{ /*BASE::virtual_hook( id, data );*/ } + +void KRootPermsIcon::virtual_hook( int id, void* data ) +{ KAuthIcon::virtual_hook( id, data ); } + +void KWritePermsIcon::virtual_hook( int id, void* data ) +{ KAuthIcon::virtual_hook( id, data ); } + +#include "kauthicon.moc" -- cgit v1.2.1