2007-04-29 17:35:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004 Lubos Lunak <l.lunak@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; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __DETECTWIDGET_H__
|
|
|
|
#define __DETECTWIDGET_H__
|
|
|
|
|
2007-07-28 15:55:22 +00:00
|
|
|
#include <KDialog>
|
2007-04-30 15:48:34 +00:00
|
|
|
#include <kwindowsystem.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include "../../rules.h"
|
|
|
|
//Added by qt3to4:
|
|
|
|
#include <QEvent>
|
|
|
|
#include <QByteArray>
|
|
|
|
|
2007-11-01 18:51:01 +00:00
|
|
|
#include "ui_detectwidget.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-11-01 18:51:01 +00:00
|
|
|
namespace KWin
|
2007-04-29 22:30:07 +00:00
|
|
|
{
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
class DetectWidget
|
2007-11-01 18:51:01 +00:00
|
|
|
: public QWidget, public Ui_DetectWidget
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2007-11-01 18:51:01 +00:00
|
|
|
explicit DetectWidget( QWidget* parent = NULL );
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DetectDialog
|
|
|
|
: public KDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2007-09-02 19:11:09 +00:00
|
|
|
explicit DetectDialog( QWidget* parent = NULL, const char* name = NULL );
|
2007-04-29 17:35:43 +00:00
|
|
|
void detect( WId window );
|
|
|
|
QByteArray selectedClass() const;
|
|
|
|
bool selectedWholeClass() const;
|
|
|
|
QByteArray selectedRole() const;
|
|
|
|
bool selectedWholeApp() const;
|
|
|
|
NET::WindowType selectedType() const;
|
|
|
|
QString selectedTitle() const;
|
|
|
|
Rules::StringMatch titleMatch() const;
|
|
|
|
QByteArray selectedMachine() const;
|
|
|
|
const KWindowInfo& windowInfo() const;
|
|
|
|
signals:
|
|
|
|
void detectionDone( bool );
|
|
|
|
protected:
|
|
|
|
virtual bool eventFilter( QObject* o, QEvent* e );
|
|
|
|
private:
|
|
|
|
void selectWindow();
|
|
|
|
void readWindow( WId window );
|
|
|
|
void executeDialog();
|
|
|
|
WId findWindow();
|
|
|
|
QByteArray wmclass_class;
|
|
|
|
QByteArray wmclass_name;
|
|
|
|
QByteArray role;
|
|
|
|
NET::WindowType type;
|
|
|
|
QString title;
|
|
|
|
QByteArray extrarole;
|
|
|
|
QByteArray machine;
|
|
|
|
DetectWidget* widget;
|
2007-07-28 15:55:22 +00:00
|
|
|
KDialog* grabber;
|
2007-04-29 17:35:43 +00:00
|
|
|
KWindowInfo info;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline
|
|
|
|
const KWindowInfo& DetectDialog::windowInfo() const
|
|
|
|
{
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|