KiCad PCB EDA Suite
Loading...
Searching...
No Matches
bitmap_types.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2007-2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25
26#ifndef BITMAP_TYPES_H_
27#define BITMAP_TYPES_H_
28
29//FIXME: cannot include only this file in wxWidgets 2.9.3
30// test if it works under stable release
31// #include <wx/bitmap.h> // only to define wxBitmap
32class wxBitmap; // only to define wxBitmap
33class wxBitmapBundle;
34class wxWindow;
35class wxString;
36class BITMAP_STORE;
37
38enum class BITMAPS : unsigned int;
39
40enum class BITMAP_TYPE
41{
42 PNG,
43 JPG,
44 BMP
45};
46
48
55wxBitmap KiBitmap( BITMAPS aBitmap, int aHeightTag = -1 );
56
57wxBitmapBundle KiBitmapBundle( BITMAPS aBitmap );
58
59wxBitmapBundle KiDisabledBitmapBundle( BITMAPS aBitmap );
60
66
78wxBitmap KiScaledBitmap( BITMAPS aBitmap, wxWindow* aWindow, int aHeight = -1,
79 bool aQuantized = false );
80
87wxBitmap KiScaledBitmap( const wxBitmap& aBitmap, wxWindow* aWindow );
88
93int KiIconScale( wxWindow* aWindow );
94
101wxBitmap* KiBitmapNew( BITMAPS aBitmap );
102
103#endif // BITMAP_TYPES_H_
wxBitmap * KiBitmapNew(BITMAPS aBitmap)
Allocate a wxBitmap on heap from a memory record, held in a BITMAPS.
Definition: bitmap.cpp:198
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
Definition: bitmap.cpp:110
wxBitmap KiScaledBitmap(BITMAPS aBitmap, wxWindow *aWindow, int aHeight=-1, bool aQuantized=false)
Construct a wxBitmap from a memory record, scaling it if device DPI demands it.
Definition: bitmap.cpp:147
void ClearScaledBitmapCache()
Wipes out the scaled bitmap cache so that the icon theme can be changed.
Definition: bitmap.cpp:172
wxBitmap KiBitmap(BITMAPS aBitmap, int aHeightTag=-1)
Construct a wxBitmap from an image identifier Returns the image from the active theme if the image ha...
Definition: bitmap.cpp:104
int KiIconScale(wxWindow *aWindow)
Return the automatic scale factor that would be used for a given window by KiScaledBitmap and KiScale...
Definition: bitmap.cpp:122
BITMAP_STORE * GetBitmapStore()
Definition: bitmap.cpp:92
BITMAP_TYPE
Definition: bitmap_types.h:41
wxBitmapBundle KiDisabledBitmapBundle(BITMAPS aBitmap)
Definition: bitmap.cpp:116
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
Helper to retrieve bitmaps while handling icon themes and scaling.
Definition: bitmap_store.h:46