author | Andrey Skvortsov <andrej.skvortzov@gmail.com> |
Thu, 19 Jan 2017 13:56:09 +0300 | |
changeset 1639 | 1953c268a194 |
parent 1571 | 486f94a8032c |
child 1735 | c02818d7e29f |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
814 | 6 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
7 |
# Copyright (C) 2012: Edouard TISSERANT and Laurent BESSARD |
814 | 8 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
9 |
# See COPYING file for copyrights details. |
814 | 10 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
11 |
# This program is free software; you can redistribute it and/or |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
12 |
# modify it under the terms of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
13 |
# as published by the Free Software Foundation; either version 2 |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
814 | 15 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
16 |
# This program is distributed in the hope that it will be useful, |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
19 |
# GNU General Public License for more details. |
814 | 20 |
# |
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
21 |
# You should have received a copy of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
22 |
# along with this program; if not, write to the Free Software |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
815
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
25 |
import os |
|
26 |
||
27 |
import wx |
|
28 |
||
29 |
#------------------------------------------------------------------------------- |
|
30 |
# Library Structures |
|
31 |
#------------------------------------------------------------------------------- |
|
32 |
||
33 |
BitmapLibrary = {} |
|
34 |
BitmapFolders = [] |
|
35 |
||
36 |
#------------------------------------------------------------------------------- |
|
37 |
# Library Helpers |
|
38 |
#------------------------------------------------------------------------------- |
|
39 |
||
40 |
def AddBitmapFolder(path): |
|
815
e4f24593a758
Adding support for extending internationalization to extensions
laurent
parents:
814
diff
changeset
|
41 |
if os.path.exists(path) and os.path.isdir(path) and path not in BitmapFolders: |
814 | 42 |
BitmapFolders.append(path) |
43 |
||
44 |
def SearchBitmap(bmp_name): |
|
45 |
for folder in BitmapFolders: |
|
46 |
bmp_path = os.path.join(folder, bmp_name + ".png") |
|
47 |
if os.path.isfile(bmp_path): |
|
48 |
return wx.Bitmap(bmp_path) |
|
49 |
return None |
|
50 |
||
51 |
def GetBitmap(bmp_name1, bmp_name2=None, size=None): |
|
52 |
bmp = BitmapLibrary.get((bmp_name1, bmp_name2, size)) |
|
53 |
if bmp is not None: |
|
54 |
return bmp |
|
55 |
||
56 |
if bmp_name2 is None: |
|
57 |
bmp = SearchBitmap(bmp_name1) |
|
58 |
else: |
|
59 |
# Bitmap with two icon |
|
60 |
bmp1 = SearchBitmap(bmp_name1) |
|
61 |
bmp2 = SearchBitmap(bmp_name2) |
|
62 |
||
63 |
if bmp1 is not None and bmp2 is not None: |
|
64 |
# Calculate bitmap size |
|
65 |
width = bmp1.GetWidth() + bmp2.GetWidth() - 1 |
|
66 |
height = max(bmp1.GetHeight(), bmp2.GetHeight()) |
|
67 |
||
68 |
# Create bitmap with both icons |
|
69 |
bmp = wx.EmptyBitmap(width, height) |
|
70 |
dc = wx.MemoryDC() |
|
71 |
dc.SelectObject(bmp) |
|
72 |
dc.Clear() |
|
73 |
dc.DrawBitmap(bmp1, 0, 0) |
|
74 |
dc.DrawBitmap(bmp2, bmp1.GetWidth() - 1, 0) |
|
75 |
dc.Destroy() |
|
76 |
||
77 |
elif bmp1 is not None: |
|
78 |
bmp = bmp1 |
|
79 |
elif bmp2 is not None: |
|
80 |
bmp = bmp2 |
|
81 |
||
82 |
if bmp is not None: |
|
83 |
BitmapLibrary[(bmp_name1, bmp_name2, size)] = bmp |
|
84 |
||
85 |
return bmp |