mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-07 05:54:40 +02:00
139 lines
3.7 KiB
C++
139 lines
3.7 KiB
C++
// This file is part of Notepad++ project
|
|
// Copyright (C)2020 Don HO <don.h@free.fr>
|
|
//
|
|
// 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.
|
|
//
|
|
// Note that the GPL places important restrictions on "derived works", yet
|
|
// it does not provide a detailed definition of that term. To avoid
|
|
// misunderstandings, we consider an application to constitute a
|
|
// "derivative work" for the purpose of this license if it does any of the
|
|
// following:
|
|
// 1. Integrates source code from Notepad++.
|
|
// 2. Integrates/includes/aggregates Notepad++ into a proprietary executable
|
|
// installer, such as those produced by InstallShield.
|
|
// 3. Links to a library or executes a program that does any of the above.
|
|
//
|
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <windows.h>
|
|
#include <commctrl.h>
|
|
|
|
const int nbMax = 45;
|
|
#define IDI_SEPARATOR_ICON -1
|
|
|
|
class IconList
|
|
{
|
|
public :
|
|
IconList() = default;
|
|
void create(HINSTANCE hInst, int iconSize);
|
|
void create(int iconSize, HINSTANCE hInst, int *iconIDArray, int iconIDArraySize);
|
|
|
|
void destroy() {
|
|
ImageList_Destroy(_hImglst);
|
|
};
|
|
HIMAGELIST getHandle() const {return _hImglst;};
|
|
void addIcon(int iconID) const;
|
|
bool changeIcon(int index, const TCHAR *iconLocation) const;
|
|
void setIconSize(int size) const;
|
|
|
|
private :
|
|
HIMAGELIST _hImglst = nullptr;
|
|
HINSTANCE _hInst = nullptr;
|
|
int *_pIconIDArray = nullptr;
|
|
int _iconIDArraySize = 0;
|
|
int _iconSize = 0;
|
|
};
|
|
|
|
typedef struct
|
|
{
|
|
int _cmdID;
|
|
|
|
int _defaultIcon;
|
|
int _hotIcon;
|
|
int _grayIcon;
|
|
|
|
int _stdIcon;
|
|
} ToolBarButtonUnit;
|
|
|
|
typedef std::vector<ToolBarButtonUnit> ToolBarIconIDs;
|
|
|
|
typedef std::vector<IconList> IconListVector;
|
|
|
|
class IconLists
|
|
{
|
|
public :
|
|
IconLists() = default;
|
|
HIMAGELIST getImageListHandle(int index) const {
|
|
return _iconListVector[index].getHandle();
|
|
};
|
|
|
|
protected :
|
|
IconListVector _iconListVector;
|
|
};
|
|
|
|
const int HLIST_DEFAULT = 0;
|
|
const int HLIST_HOT = 1;
|
|
const int HLIST_DISABLE = 2;
|
|
|
|
class ToolBarIcons : public IconLists
|
|
{
|
|
public :
|
|
ToolBarIcons() = default;
|
|
|
|
void init(ToolBarButtonUnit *buttonUnitArray, int arraySize);
|
|
void create(HINSTANCE hInst, int iconSize);
|
|
void destroy();
|
|
|
|
HIMAGELIST getDefaultLst() const {
|
|
return IconLists::getImageListHandle(HLIST_DEFAULT);
|
|
};
|
|
|
|
HIMAGELIST getHotLst() const {
|
|
return IconLists::getImageListHandle(HLIST_HOT);
|
|
};
|
|
|
|
HIMAGELIST getDisableLst() const {
|
|
return IconLists::getImageListHandle(HLIST_DISABLE);
|
|
};
|
|
|
|
unsigned int getNbCommand() const {return _nbCmd;};
|
|
void resizeIcon(int size) {
|
|
reInit(size);
|
|
};
|
|
|
|
void reInit(int size);
|
|
|
|
int getNbIcon() const {
|
|
return int(_tbiis.size());
|
|
};
|
|
|
|
int getStdIconAt(int i) const {
|
|
return _tbiis[i]._stdIcon;
|
|
};
|
|
|
|
bool replaceIcon(int witchList, int iconIndex, const TCHAR *iconLocation) const {
|
|
if ((witchList != HLIST_DEFAULT) && (witchList != HLIST_HOT) && (witchList != HLIST_DISABLE))
|
|
return false;
|
|
return _iconListVector[witchList].changeIcon(iconIndex, iconLocation);
|
|
};
|
|
|
|
private :
|
|
ToolBarIconIDs _tbiis;
|
|
unsigned int _nbCmd = 0;
|
|
};
|
|
|