cosmetix
[dyskinesia.git] / src / joinwin.h
blob00686bbebaff6f011bdf3f57b215c5fafba2eec5
1 /* coded by Ketmar // Vampire Avalon (psyc://ketmar.no-ip.org/~Ketmar)
2 * Understanding is not required. Only obedience.
4 * This program is free software. It comes without any warranty, to
5 * the extent permitted by applicable law. You can redistribute it
6 * and/or modify it under the terms of the Do What The Fuck You Want
7 * To Public License, Version 2, as published by Sam Hocevar. See
8 * http://sam.zoy.org/wtfpl/COPYING for more details.
9 */
10 #ifndef JOINWIN_H
11 #define JOINWIN_H
13 #include <QDialog>
16 class PsycEntity;
19 #include "ui_joinwin.h"
20 class JoinWin : public QDialog, public Ui_joinWin {
21 Q_OBJECT
23 public:
24 JoinWin (QWidget *parent = 0);
25 ~JoinWin ();
27 private slots:
28 void on_btEnter_clicked (void);
29 void on_leNick_textChanged (void);
30 void on_leHost_textChanged (void);
31 void on_leRoom_textChanged (void);
33 signals:
34 void enter (const PsycEntity &room);
38 #endif