1
0
mirror of https://invent.kde.org/network/krfb synced 2024-07-08 20:15:53 +00:00
krfb/personalinvitedialog.h
Alessandro Praduroux 5cc6c452e8 big code reorganization:
- removed old libvncserver, we will depend on external lib
- removed krfb, srvloc, krfb_http subdirs, now everything is 
  in krfb main dir instead 

svn path=/trunk/KDE/kdenetwork/krfb/; revision=649168
2007-04-02 07:13:22 +00:00

48 lines
1.4 KiB
C++

/* This file is part of the KDE project
Copyright (C) 2004 Nadeem Hasan <nhasan@kde.org>
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; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef PERSONALINVITEDIALOG_H
#define PERSONALINVITEDIALOG_H
#include <qdatetime.h>
#include <KDialog>
#include "ui_personalinvitewidget.h"
class QWidget;
class PersonalInviteDialog : public KDialog, public Ui::PersonalInviteWidget
{
Q_OBJECT
public:
PersonalInviteDialog( QWidget *parent );
virtual ~PersonalInviteDialog() {}
void setHost( const QString &host, uint port );
void setPassword( const QString &passwd );
void setExpiration( const QDateTime &expire );
public Q_SLOTS:
void showWhatsthis(const QString &);
protected:
QWidget *m_inviteWidget;
};
#endif // PERSONALINVITEDIALOG_H