Home
last modified time | relevance | path

Searched refs:AutoSurface (Results 1 – 25 of 152) sorted by relevance

1234567

/dports/games/maxr/maxr-0.2.9/src/
H A Dmain.h114 AutoSurface gfx_Chand;
115 AutoSurface gfx_Cno;
117 AutoSurface gfx_Cmove;
119 AutoSurface gfx_Chelp;
132 AutoSurface gfx_tmp;
136 AutoSurface gfx_Cband;
144 AutoSurface gfx_Cload;
149 AutoSurface gfx_edock;
206 AutoSurface res_oil;
208 AutoSurface res_gold;
[all …]
H A Dunifonts.h195 typedef AutoSurface FontTypeSurfaces[0xFFFF];
199 AutoSurface charsNormal[0xFFFF];
200 AutoSurface charsNormalRed[0xFFFF];
201 AutoSurface charsSmallWhite[0xFFFF];
202 AutoSurface charsSmallGreen[0xFFFF];
203 AutoSurface charsSmallRed[0xFFFF];
204 AutoSurface charsSmallYellow[0xFFFF];
205 AutoSurface charsBig[0xFFFF];
206 AutoSurface charsBigGold[0xFFFF];
233 AutoSurface loadCharsetSurface (eUnicodeFontCharset charset, eUnicodeFontType fonttype);
H A Dpcx.cpp109 AutoSurface LoadPCX (const std::string& name) in LoadPCX()
115 return AutoSurface (SDL_CreateRGBSurface (0, 100, 20, Video.getColDepth(), 0, 0, 0, 0)); in LoadPCX()
122 return AutoSurface (SDL_CreateRGBSurface (0, 100, 20, Video.getColDepth(), 0, 0, 0, 0)); in LoadPCX()
128 AutoSurface s (SDL_CreateRGBSurface (0, x, y, 32, 0, 0, 0, 0)); in LoadPCX()
H A Dunifonts.cpp368 AutoSurface surface (loadCharsetSurface (charset, fonttype)); in loadChars()
374 AutoSurface (*pchars)[0xFFFF] = getFontTypeSurfaces (fonttype); in loadChars()
380 AutoSurface (&chars)[0xFFFF] = *pchars; in loadChars()
447 chars[unicodeplace] = AutoSurface (SDL_CreateRGBSurface (0, Rect.w, Rect.h, 32, 0, 0, 0, 0)); in loadChars()
499 AutoSurface cUnicodeFont::loadCharsetSurface (eUnicodeFontCharset charset, in loadCharsetSurface()
577 const AutoSurface (&chars)[0xFFFF] = *getFontTypeSurfaces (fonttype); in showText()
790 const AutoSurface (&chars)[0xFFFF] = *getFontTypeSurfaces (fonttype); in getTextSize()
850 const AutoSurface (&chars)[0xFFFF] = *getFontTypeSurfaces (fonttype); in getFontHeight()
931 const AutoSurface (&chars)[0xFFFF] = *getFontTypeSurfaces (fonttype); in getUnicodeCharacterWidth()
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/menu/windows/windowplayerselection/
H A Dwindowplayerselection.h60 AutoSurface humanPlayerSurface;
61 AutoSurface aiPlayerSurface;
62 AutoSurface noPlayerSurface;
63 AutoSurface dummySurface;
H A Dwindowplayerselection.cpp52 humanPlayerSurface = AutoSurface (LoadPCX (GFXOD_PLAYER_HUMAN)); in cWindowPlayerSelection()
53 aiPlayerSurface = AutoSurface (LoadPCX (GFXOD_PLAYER_PC)); in cWindowPlayerSelection()
54 noPlayerSurface = AutoSurface (LoadPCX (GFXOD_PLAYER_NONE)); in cWindowPlayerSelection()
55 dummySurface = AutoSurface (SDL_CreateRGBSurface (0, 55, 71, Video.getColDepth(), 0, 0, 0, 0)); in cWindowPlayerSelection()
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/menu/widgets/
H A Dcolorpicker.cpp84 AutoSurface cRgbColorPicker::createColorsSurface() in createColorsSurface()
88 AutoSurface surface (SDL_CreateRGBSurface (0, size.x(), size.y(), 32, 0, 0, 0, 0)); in createColorsSurface()
106 AutoSurface cRgbColorPicker::createColorBarSurface() in createColorBarSurface()
110 AutoSurface surface (SDL_CreateRGBSurface (0, size.x(), size.y(), 32, 0, 0, 0, 0)); in createColorBarSurface()
127 AutoSurface cRgbColorPicker::createColorMarkerSurface() in createColorMarkerSurface()
129 AutoSurface surface (SDL_CreateRGBSurface (0, 3, 3, 32, 0, 0, 0, 0)); in createColorMarkerSurface()
138 AutoSurface cRgbColorPicker::createColorHueMarkerSurface() in createColorHueMarkerSurface()
140 AutoSurface surface (SDL_CreateRGBSurface (0, 15 + 2, 3, 32, 0, 0, 0, 0)); in createColorHueMarkerSurface()
H A Dcolorpicker.h59 AutoSurface createColorsSurface();
60 AutoSurface createColorBarSurface();
62 AutoSurface createColorMarkerSurface();
63 AutoSurface createColorHueMarkerSurface();
H A Dcombobox.h59 AutoSurface listViewBackground;
60 AutoSurface lineEditBackground;
/dports/games/maxr/maxr-0.2.9/src/game/data/units/
H A Dvehicle.h95 std::array<AutoSurface, 8> img, img_org; // 8 Surfaces of the vehicle
96 std::array<AutoSurface, 8> shw, shw_org; // 8 Surfaces of shadows
97 AutoSurface build, build_org; // Surfaces when building
98 AutoSurface build_shw, build_shw_org; // Surfaces of shadows when building
99 AutoSurface clear_small, clear_small_org; // Surfaces when clearing
100 AutoSurface clear_small_shw, clear_small_shw_org; // Surfaces when clearing
101 AutoSurface overlay, overlay_org; // Overlays
102 AutoSurface storage; // image of the vehicle in storage
104 AutoSurface info; // info image
H A Dbuilding.h76 AutoSurface img, img_org; // Surface of the building
77 AutoSurface shw, shw_org; // Surfaces of the shadow
78 AutoSurface eff, eff_org; // Surfaces of the effects
79 AutoSurface video; // video
80 AutoSurface info; // info image
/dports/games/maxr/maxr-0.2.9/src/game/data/map/
H A Dmap.h138 AutoSurface sf; /** the scaled surface of the terrain */
139 AutoSurface sf_org; /** the original surface of the terrain */
140 AutoSurface shw; /** the scaled surface of the terrain in the fog */
141 AutoSurface shw_org; /** the original surface of the terrain in the fog */
176 AutoSurface createBigSurface (int sizex, int sizey) const;
179 static AutoSurface loadMapPreview (const std::string& mapPath, int* mapSize = nullptr);
181 …static AutoSurface loadTerrGraph (SDL_RWops* fpMapFile, int iGraphicsPos, const SDL_Color (&colors…
/dports/games/maxr/maxr-0.2.9/src/game/logic/
H A Dfxeffects.h76 AutoSurface (*pImages) [2];
112 AutoSurface (*pImages) [2];
173 AutoSurface (*pImages) [2];
193 AutoSurface (*pImages) [2];
208 AutoSurface (*pImages) [2];
234 AutoSurface (*pImages) [2];
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/
H A Dwindow.h70 …explicit cWindow (AutoSurface surface, eWindowBackgrounds backgroundType = eWindowBackgrounds::Bla…
179 void setSurface (AutoSurface surface);
192 AutoSurface surface;
/dports/games/maxr/maxr-0.2.9/src/utility/
H A Dautosurface.h41 typedef std::unique_ptr<SDL_Surface, detail::SdlSurfaceDeleter> AutoSurface; typedef
44 void SDL_FreeSurface (const AutoSurface&) MAXR_DELETE_FUNCTION;
/dports/games/maxr/maxr-0.2.9/src/ui/graphical/menu/windows/windowadvancedhangar/
H A Dwindowadvancedhangar.h33 cWindowAdvancedHangar (AutoSurface surface, cPlayerColor playerColor, int playerClan);
34 cWindowAdvancedHangar (AutoSurface surface, const cPlayer& player);
68 cWindowAdvancedHangar<SelectedUnitItemType>::cWindowAdvancedHangar (AutoSurface surface, cPlayerCol… in cWindowAdvancedHangar()
76 cWindowAdvancedHangar<SelectedUnitItemType>::cWindowAdvancedHangar (AutoSurface surface, const cPla… in cWindowAdvancedHangar()
/dports/databases/sqlitebrowser/sqlitebrowser-3.12.1/libs/qscintilla/src/
H A DEditor.h607 friend class AutoSurface; variable
613 class AutoSurface {
617 AutoSurface(Editor *ed, int technology = -1) {
625 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
634 AutoSurface(const AutoSurface &) = delete;
635 AutoSurface(AutoSurface &&) = delete;
636 void operator=(const AutoSurface &) = delete;
637 void operator=(AutoSurface &&) = delete;
638 ~AutoSurface() { in ~AutoSurface()
/dports/devel/qscintilla2-qt5/QScintilla_src-2.13.0/scintilla/src/
H A DEditor.h607 friend class AutoSurface; variable
613 class AutoSurface {
617 AutoSurface(Editor *ed, int technology = -1) {
625 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
634 AutoSurface(const AutoSurface &) = delete;
635 AutoSurface(AutoSurface &&) = delete;
636 void operator=(const AutoSurface &) = delete;
637 void operator=(AutoSurface &&) = delete;
638 ~AutoSurface() { in ~AutoSurface()
/dports/devel/qscintilla2-designerplugin-qt5/QScintilla_src-2.13.0/scintilla/src/
H A DEditor.h607 friend class AutoSurface; variable
613 class AutoSurface {
617 AutoSurface(Editor *ed, int technology = -1) {
625 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
634 AutoSurface(const AutoSurface &) = delete;
635 AutoSurface(AutoSurface &&) = delete;
636 void operator=(const AutoSurface &) = delete;
637 void operator=(AutoSurface &&) = delete;
638 ~AutoSurface() { in ~AutoSurface()
/dports/devel/py-qt5-qscintilla2/QScintilla_src-2.13.0/scintilla/src/
H A DEditor.h607 friend class AutoSurface; variable
613 class AutoSurface {
617 AutoSurface(Editor *ed, int technology = -1) {
625 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
634 AutoSurface(const AutoSurface &) = delete;
635 AutoSurface(AutoSurface &&) = delete;
636 void operator=(const AutoSurface &) = delete;
637 void operator=(AutoSurface &&) = delete;
638 ~AutoSurface() { in ~AutoSurface()
/dports/graphics/cfdg/cfdg-3.3_1/src-scintilla/src/
H A DEditor.h633 friend class AutoSurface; variable
639 class AutoSurface {
643 AutoSurface(const Editor *ed, int technology = -1) {
652 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
662 AutoSurface(const AutoSurface &) = delete;
663 AutoSurface(AutoSurface &&) = delete;
664 void operator=(const AutoSurface &) = delete;
665 void operator=(AutoSurface &&) = delete;
666 ~AutoSurface() { in ~AutoSurface()
/dports/x11-toolkits/scintilla/scintilla/src/
H A DEditor.h634 friend class AutoSurface; variable
640 class AutoSurface {
644 AutoSurface(const Editor *ed, int technology = -1) {
653 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
663 AutoSurface(const AutoSurface &) = delete;
664 AutoSurface(AutoSurface &&) = delete;
665 void operator=(const AutoSurface &) = delete;
666 void operator=(AutoSurface &&) = delete;
667 ~AutoSurface() { in ~AutoSurface()
/dports/devel/codequery/codequery-0.24.0/scintilla/src/
H A DEditor.h624 friend class AutoSurface; variable
630 class AutoSurface {
634 AutoSurface(Editor *ed, int technology = -1) {
642 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
651 AutoSurface(const AutoSurface &) = delete;
652 AutoSurface(AutoSurface &&) = delete;
653 void operator=(const AutoSurface &) = delete;
654 void operator=(AutoSurface &&) = delete;
655 ~AutoSurface() { in ~AutoSurface()
/dports/devel/geany-legacy/geany-1.37.1/scintilla/src/
H A DEditor.h634 friend class AutoSurface; variable
640 class AutoSurface {
644 AutoSurface(const Editor *ed, int technology = -1) {
652 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
661 AutoSurface(const AutoSurface &) = delete;
662 AutoSurface(AutoSurface &&) = delete;
663 void operator=(const AutoSurface &) = delete;
664 void operator=(AutoSurface &&) = delete;
665 ~AutoSurface() { in ~AutoSurface()
/dports/devel/geany/geany-1.38/scintilla/src/
H A DEditor.h634 friend class AutoSurface; variable
640 class AutoSurface {
644 AutoSurface(const Editor *ed, int technology = -1) {
652 AutoSurface(SurfaceID sid, Editor *ed, int technology = -1) {
661 AutoSurface(const AutoSurface &) = delete;
662 AutoSurface(AutoSurface &&) = delete;
663 void operator=(const AutoSurface &) = delete;
664 void operator=(AutoSurface &&) = delete;
665 ~AutoSurface() { in ~AutoSurface()

1234567