You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.5 KiB
62 lines
1.5 KiB
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.
|
||
|
*/
|
||
|
|
||
|
#ifndef OTHERUSERPAGE_H
|
||
|
#define OTHERUSERPAGE_H
|
||
|
|
||
14 years ago
|
#include <tqwidget.h>
|
||
15 years ago
|
|
||
|
#include "otherusermanager.h"
|
||
|
|
||
14 years ago
|
class TQPushButton;
|
||
15 years ago
|
class OtherUserView;
|
||
|
|
||
14 years ago
|
class OtherUserPage : public TQWidget
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
|
||
|
public:
|
||
13 years ago
|
OtherUserPage( TQWidget *parent = 0 );
|
||
15 years ago
|
~OtherUserPage();
|
||
|
|
||
|
private slots:
|
||
|
void loadAllUsers();
|
||
|
void addUser();
|
||
|
void removeUser();
|
||
|
|
||
12 years ago
|
void userAdded( TDEIO::Job* );
|
||
|
void userRemoved( TDEIO::Job* );
|
||
|
void allUsers( TDEIO::Job* );
|
||
15 years ago
|
|
||
|
void selectionChanged();
|
||
|
|
||
|
private:
|
||
|
void updateKmail();
|
||
|
|
||
14 years ago
|
TQPushButton *mAddButton;
|
||
|
TQPushButton *mDeleteButton;
|
||
15 years ago
|
|
||
|
OtherUserManager mManager;
|
||
|
OtherUserView *mView;
|
||
|
};
|
||
|
|
||
|
#endif
|