git-svn-id: svn://db.shs.com.ru/libs@161 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2017-02-02 08:52:24 +00:00
parent dfb021c228
commit 0932e6ecf4
20 changed files with 663 additions and 432 deletions

View File

@@ -2,7 +2,7 @@
#define QCD_CORE_H
#include <QObject>
#include <QMap>
#include <QMultiMap>
#include "piobject.h"
#include "cdutils_types.h"
@@ -30,7 +30,7 @@ public:
int bindWindow(QWidget * wnd);
int bindWidgets(QList<QWidget * > wl);
bool bindWidget(QWidget * w);
bool bindWidget(QWidget * w, const CDUtils::CDType & k);
bool bindWidget(QWidget * w, const CDUtils::CDType k);
int unbindWindow(QWidget * wnd);
int unbindWidgets(QList<QWidget * > wl);
@@ -44,7 +44,7 @@ private:
void bindView(QWidget * v);
EVENT_HANDLER(void, K_ChangedGlobal);
QMap<QWidget * , PIDeque<int> > binded_widgets;
QMultiMap<QWidget * , PIDeque<int> > binded_widgets;
bool updating;
private slots: