mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-13 18:42:11 +01:00
2cb067878d
- html highlighter is now highlighting with reg exps, no more with hard coded tags/tag options - all cppecheck warnings fixed + added script (cppcheck.sh) - introduced coding style + added astyle script (coding_style.sh) - fixed one mistake in czech translate + updated windows installer
73 lines
2.0 KiB
C++
73 lines
2.0 KiB
C++
/* EcWin7 - Support library for integrating Windows 7 taskbar features
|
|
* into any Qt application
|
|
* Copyright (C) 2010 Emanuele Colombo
|
|
*
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef ECWIN7_H
|
|
#define ECWIN7_H
|
|
|
|
#include <QtGlobal>
|
|
#include <QWidget>
|
|
|
|
// Windows only data definitions
|
|
#ifdef W7API
|
|
|
|
#include <windows.h>
|
|
#include <initguid.h>
|
|
#define CMIC_MASK_ASYNCOK SEE_MASK_ASYNCOK
|
|
|
|
#include <ShlObj.h>
|
|
#include <shlwapi.h>
|
|
#include "msvc2008.h"
|
|
|
|
// ********************************************************************
|
|
// EcWin7 class - Windows 7 taskbar handling for Qt and MinGW
|
|
|
|
class EcWin7
|
|
{
|
|
public:
|
|
|
|
// Initialization methods
|
|
EcWin7();
|
|
void init(WId wid);
|
|
bool winEvent(MSG* message, long* result);
|
|
|
|
// Overlay icon handling
|
|
void setOverlayIcon(QString iconName, QString description);
|
|
|
|
// Progress indicator handling
|
|
enum ToolBarProgressState {
|
|
NoProgress = 0,
|
|
Indeterminate = 1,
|
|
Normal = 2,
|
|
Error = 4,
|
|
Paused = 8
|
|
};
|
|
void setProgressValue(int value, int max);
|
|
void setProgressState(ToolBarProgressState state);
|
|
|
|
private:
|
|
WId mWindowId;
|
|
UINT mTaskbarMessageId;
|
|
ITaskbarList3* mTaskbar;
|
|
HICON mOverlayIcon;
|
|
};
|
|
// Windows only data definitions - END
|
|
#endif
|
|
|
|
#endif // ECWIN7_H
|