You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
15 years ago
|
/*
|
||
|
* This file is part of ScalixAdmin.
|
||
|
*
|
||
|
* Copyright (C) 2007 Trolltech ASA. All rights reserved.
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
* This program 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 General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#include <klocale.h>
|
||
|
|
||
|
#include "otherusermanager.h"
|
||
|
|
||
|
#include "otheruserview.h"
|
||
|
|
||
14 years ago
|
class OtherUserItem : public TQListViewItem
|
||
15 years ago
|
{
|
||
|
public:
|
||
14 years ago
|
OtherUserItem( TQListView *parent, const TQString &user )
|
||
|
: TQListViewItem( parent ), mUser( user )
|
||
15 years ago
|
{
|
||
|
setText( 0, mUser );
|
||
|
}
|
||
|
|
||
15 years ago
|
TQString user() const { return mUser; }
|
||
15 years ago
|
|
||
|
private:
|
||
15 years ago
|
TQString mUser;
|
||
15 years ago
|
};
|
||
|
|
||
14 years ago
|
OtherUserView::OtherUserView( OtherUserManager *manager, TQWidget *parent )
|
||
|
: KListView( parent ), mManager( manager )
|
||
15 years ago
|
{
|
||
|
addColumn( i18n( "Registered Accounts" ) );
|
||
|
setFullWidth( true );
|
||
|
|
||
15 years ago
|
connect( mManager, TQT_SIGNAL( changed() ), TQT_SLOT( userChanged() ) );
|
||
15 years ago
|
|
||
|
userChanged();
|
||
|
}
|
||
|
|
||
15 years ago
|
TQString OtherUserView::selectedUser() const
|
||
15 years ago
|
{
|
||
|
OtherUserItem *item = dynamic_cast<OtherUserItem*>( selectedItem() );
|
||
|
if ( item )
|
||
|
return item->user();
|
||
|
|
||
15 years ago
|
return TQString();
|
||
15 years ago
|
}
|
||
|
|
||
|
void OtherUserView::userChanged()
|
||
|
{
|
||
|
clear();
|
||
|
|
||
15 years ago
|
TQStringList users = mManager->otherUsers();
|
||
15 years ago
|
for ( uint i = 0; i < users.count(); ++i )
|
||
|
new OtherUserItem( this, users[ i ] );
|
||
|
}
|
||
|
|
||
|
#include "otheruserview.moc"
|