File: wxc_bitmap_code_generator.h

package info (click to toggle)
codelite 14.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112,816 kB
  • sloc: cpp: 483,662; ansic: 150,144; php: 9,569; lex: 4,186; python: 3,417; yacc: 2,820; sh: 1,147; makefile: 52; xml: 13
file content (55 lines) | stat: -rw-r--r-- 1,513 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef WXCBITMAPCODEGENERATOR_H
#define WXCBITMAPCODEGENERATOR_H

#include <asyncprocess.h>
#include <macros.h>
#include <wx/arrstr.h>
#include <wx/event.h>
#include <wx/filename.h>

extern const wxEventType wxEVT_BITMAP_CODE_GENERATION_DONE;

class TopLevelWinWrapper;
class wxcCodeGeneratorHelper : public wxEvtHandler
{
    typedef std::map<wxString, wxString> MapString_t;

protected:
    MapString_t m_bitmapMap;
    wxArrayString m_icons;
    wxFileName m_xrcFile;
    wxFileName m_cppFile;
    wxFileName m_destCPP;
    wxString m_wxrcOutput;
    wxStringSet_t m_winIds;

protected:
    bool IsGenerateNeeded() const;

private:
    wxcCodeGeneratorHelper();
    virtual ~wxcCodeGeneratorHelper();
    wxString GenerateTopLevelWindowIconCode() const;

public:
    static wxcCodeGeneratorHelper& Get();
    /**
     * @brief stop the worker thread
     */
    void UnInitialize();

    void Clear();
    void ClearWindowIds();
    void AddIcon(const wxString& bitmapFile);
    void ClearIcons();
    wxString AddBitmap(const wxString& bitmapFile, const wxString& name = wxEmptyString);
    void AddWindowId(const wxString& winid);
    bool CreateXRC();
    wxString GenerateInitCode(TopLevelWinWrapper* tw) const;
    wxString GenerateExternCode() const;
    wxString GenerateWinIdEnum() const;
    wxString BitmapCode(const wxString& bmp, const wxString& bmpname = wxEmptyString) const;
    bool Contains(const wxString& bmp) const { return m_bitmapMap.count(bmp); }
};

#endif // WXCBITMAPCODEGENERATOR_H