summaryrefslogtreecommitdiffstats
path: root/konversation/src/joinchanneldialog.h
blob: a8565d8a47342de75b0505ccbaa08345c6eb67e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
  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.
*/

/*
  Copyright (C) 2004 Peter Simonsson <psn@linux.se>
*/

#ifndef KONVERSATIONJOINCHANNELDIALOG_H
#define KONVERSATIONJOINCHANNELDIALOG_H

#include <kdialogbase.h>


class Server;

namespace Konversation
{

    class JoinChannelUI;

    class JoinChannelDialog : public KDialogBase
    {
        TQ_OBJECT
  
            public:
            explicit JoinChannelDialog(Server* server, TQWidget *parent = 0, const char *name = 0);
            ~JoinChannelDialog();

            TQString channel() const;
            TQString password() const;

        protected slots:
            virtual void slotOk();

        private:
            JoinChannelUI* m_widget;
            Server* m_server;
    };

}
#endif