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#include <kicommon.h>
30
31//FIXME: cannot include only this file in wxWidgets 2.9.3
32// test if it works under stable release
33// #include <wx/bitmap.h> // only to define wxBitmap
34class wxBitmap; // only to define wxBitmap
35class wxBitmapBundle;
36class wxWindow;
37class wxString;
38class BITMAP_STORE;
39
40enum class BITMAPS : unsigned int;
41
42enum class BITMAP_TYPE
43{
44 PNG,
45 JPG,
46 BMP
47};
48
50
57KICOMMON_API wxBitmap KiBitmap( BITMAPS aBitmap, int aHeightTag = -1 );
58
59KICOMMON_API wxBitmapBundle KiBitmapBundle( BITMAPS aBitmap );
60
61KICOMMON_API wxBitmapBundle KiDisabledBitmapBundle( BITMAPS aBitmap );
62
68
80KICOMMON_API wxBitmap KiScaledBitmap( BITMAPS aBitmap, wxWindow* aWindow, int aHeight = -1,
81 bool aQuantized = false );
82
89KICOMMON_API wxBitmap KiScaledBitmap( const wxBitmap& aBitmap, wxWindow* aWindow );
90
95KICOMMON_API int KiIconScale( wxWindow* aWindow );
96
103KICOMMON_API wxBitmap* KiBitmapNew( BITMAPS aBitmap );
104
105#endif // BITMAP_TYPES_H_
KICOMMON_API wxBitmapBundle KiDisabledBitmapBundle(BITMAPS aBitmap)
Definition: bitmap.cpp:116
KICOMMON_API void ClearScaledBitmapCache()
Wipes out the scaled bitmap cache so that the icon theme can be changed.
Definition: bitmap.cpp:172
KICOMMON_API wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
Definition: bitmap.cpp:110
KICOMMON_API 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
KICOMMON_API BITMAP_STORE * GetBitmapStore()
Definition: bitmap.cpp:92
BITMAP_TYPE
Definition: bitmap_types.h:43
KICOMMON_API 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
KICOMMON_API 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
KICOMMON_API wxBitmap * KiBitmapNew(BITMAPS aBitmap)
Allocate a wxBitmap on heap from a memory record, held in a BITMAPS.
Definition: bitmap.cpp:198
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:47
#define KICOMMON_API
Definition: kicommon.h:28