From b829170121d3657369904ec62d8065606777a9ce Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Oct 2021 18:54:04 +0200 Subject: Removed doxygen generated docs They can be rebuild anytime and are considered a build artifact/binary. --- Doc/doxygen/html/_image_box_8h_source.html | 188 ----------------------------- 1 file changed, 188 deletions(-) delete mode 100644 Doc/doxygen/html/_image_box_8h_source.html (limited to 'Doc/doxygen/html/_image_box_8h_source.html') diff --git a/Doc/doxygen/html/_image_box_8h_source.html b/Doc/doxygen/html/_image_box_8h_source.html deleted file mode 100644 index c3e0c01..0000000 --- a/Doc/doxygen/html/_image_box_8h_source.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - -Starshatter_Open: D:/SRC/StarshatterSVN/nGenEx/ImageBox.h Source File - - - - - - - - - - - - - -
-
- - - - - - -
-
Starshatter_Open -
-
Open source Starshatter engine
-
-
- - - - - -
-
- -
-
-
- -
- - - - -
- -
- -
-
-
ImageBox.h
-
-
-Go to the documentation of this file.
1 /* Project nGenEx
-
2  Destroyer Studios LLC
-
3  Copyright © 1997-2004. All Rights Reserved.
-
4 
-
5  SUBSYSTEM: nGenEx.lib
-
6  FILE: ImageBox.h
-
7  AUTHOR: John DiCamillo
-
8 
-
9 
-
10  OVERVIEW
-
11  ========
-
12  ImageBox class
-
13 */
-
14 
-
15 #ifndef ImageBox_h
-
16 #define ImageBox_h
-
17 
-
18 #include "Types.h"
-
19 #include "ActiveWindow.h"
-
20 #include "Bitmap.h"
-
21 
-
22 // +--------------------------------------------------------------------+
-
23 
-
24 class ImageBox : public ActiveWindow
-
25 {
-
26 public:
-
27  ImageBox(ActiveWindow* p, int ax, int ay, int aw, int ah, DWORD id=0);
-
28  ImageBox(Screen* s, int ax, int ay, int aw, int ah, DWORD id=0);
-
29  virtual ~ImageBox();
-
30 
-
31  // Operations:
-
32  virtual void Draw();
-
33 
-
34  // Event Target Interface:
-
35  virtual int OnMouseMove(int x, int y);
-
36  virtual int OnLButtonDown(int x, int y);
-
37  virtual int OnLButtonUp(int x, int y);
-
38  virtual int OnClick();
-
39  virtual int OnMouseEnter(int x, int y);
-
40  virtual int OnMouseExit(int x, int y);
-
41 
-
42  // Property accessors:
-
43  int GetBlendMode() const { return blend_mode; }
-
44  void SetBlendMode(int blend) { blend_mode = blend; }
-
45  bool GetBorder() const { return border; }
-
46  void SetBorder(bool bNewValue) { border = bNewValue; }
-
47  Color GetBorderColor() const { return border_color; }
- -
49  void GetPicture(Bitmap& img) const;
-
50  void SetPicture(const Bitmap& img);
-
51  int GetPictureLocation() const;
-
52  void SetPictureLocation(int nNewValue);
-
53  Rect GetTargetRect() const { return target_rect; }
-
54  void SetTargetRect(const Rect& r) { target_rect = r; }
-
55 
-
56 protected:
-
57  virtual void DrawTabbedText();
-
58 
-
59  Rect CalcLabelRect(int img_w, int img_h);
- -
61 
-
62  bool border;
- - - - - -
68 };
-
69 
-
70 #endif ImageBox_h
-
71 
-
-
- - - - -- cgit v1.1