~vcs-imports/qtsmbstatus/trunk

« back to all changes in this revision

Viewing changes to client/login_windows.h

  • Committer: rocher.daniel
  • Date: 2011-01-25 14:07:01 UTC
  • Revision ID: rocher.daniel-20110125140701-w9cvywjrdl9aqp9g
Add a warning file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2004 by Daniel Rocher                                   *
3
 
 *   daniel.rocher@adella.org                                              *
4
 
 *                                                                         *
5
 
 *   This program is free software; you can redistribute it and/or modify  *
6
 
 *   it under the terms of the GNU General Public License as published by  *
7
 
 *   the Free Software Foundation; either version 2 of the License, or     *
8
 
 *   (at your option) any later version.                                   *
9
 
 *                                                                         *
10
 
 *   This program is distributed in the hope that it will be useful,       *
11
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13
 
 *   GNU General Public License for more details.                          *
14
 
 *                                                                         *
15
 
 *   You should have received a copy of the GNU General Public License     *
16
 
 *   along with this program; if not, write to the                         *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.              *
19
 
 ***************************************************************************/
20
 
 
21
 
#ifndef LOGIN_WINDOWS_H
22
 
#define LOGIN_WINDOWS_H
23
 
 
24
 
 
25
 
#include "build/ui/ui_login_dialog.h"
26
 
 
27
 
extern void debugQt(const QString & message);
28
 
extern QString username_login;
29
 
extern QString passwd_login;
30
 
 
31
 
class login_windows :public QDialog, public Ui::login_dialog
32
 
{
33
 
   Q_OBJECT
34
 
public:
35
 
    login_windows(QWidget *parent = 0);
36
 
    virtual ~login_windows();
37
 
private slots:
38
 
        void on_bt_login_clicked();
39
 
};
40
 
 
41
 
#endif