Home
last modified time | relevance | path

Searched refs:gcn (Results 1 – 25 of 1106) sorted by relevance

12345678910>>...45

/dports/devel/guichan/guichan-0.8.2/examples/
H A Dwidgets.hpp8 gcn::ImageFont* font;
9 gcn::Container* top;
10 gcn::Label* label;
11 gcn::Icon* icon;
12 gcn::Button* button;
14 gcn::TextBox* textBox;
16 gcn::ListBox* listBox;
17 gcn::DropDown* dropDown;
23 gcn::Slider* slider;
24 gcn::Image *image;
[all …]
H A Daction.hpp12 gcn::Container* top;
13 gcn::ImageFont* font;
14 gcn::Button* button1;
15 gcn::Button* button2;
16 gcn::Label* label1;
17 gcn::Label* label2;
75 top = new gcn::Container(); in init()
85 gcn::Widget::setGlobalFont(font); in init()
88 button1 = new gcn::Button("Button 1"); in init()
89 button2 = new gcn::Button("Button 2"); in init()
[all …]
H A Dhelloworld.hpp8 gcn::Container* top;
9 gcn::ImageFont* font;
10 gcn::Label* label;
22 top = new gcn::Container(); in init()
24 top->setDimension(gcn::Rectangle(0, 0, 640, 480)); in init()
29 …font = new gcn::ImageFont("fixedfont.bmp", " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0… in init()
32 gcn::Widget::setGlobalFont(font); in init()
35 label = new gcn::Label("Hello World"); in init()
/dports/games/wyrmgus/Wyrmgus-3.5.4/src/include/
H A Dwidgets.h79 gcn::Color mColor;
146 gcn::Image *normalImage;
147 gcn::Image *pressedImage;
148 gcn::Image *disabledImage;
150 gcn::Image *frameImage;
176 gcn::Image *normalImage;
177 gcn::Image *pressedImage;
179 gcn::Image *frameImage;
261 gcn::Image *markerImage;
393 gcn::ListBox listbox;
[all …]
/dports/games/stratagus/stratagus-3.2.0/src/include/
H A Dwidgets.h50 class LuaActionListener : public gcn::ActionListener, public gcn::KeyListener, public gcn::MouseLis…
89 explicit ImageWidget(gcn::Image *img) : gcn::Icon(img) {} in ImageWidget()
114 gcn::Image *normalImage;
115 gcn::Image *pressedImage;
116 gcn::Image *disabledImage;
144 gcn::Image *checkedNormalImage;
174 gcn::Image *checkedNormalImage;
193 gcn::Image *markerImage;
194 gcn::Image *backgroundImage;
337 gcn::ListBox listbox;
[all …]
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/platforms/gcn/
H A Dgcn_info_window.cc47 labels.begin(), labels.end(), [](gcn::Label* one, gcn::Label* two) { in max_space()
75 vector<gcn::Label*> keys; in GCNInfoWindow()
76 keys.push_back(new gcn::Label("Name: ")); in GCNInfoWindow()
77 keys.push_back(new gcn::Label("Brand: ")); in GCNInfoWindow()
78 keys.push_back(new gcn::Label("Game Version: ")); in GCNInfoWindow()
79 keys.push_back(new gcn::Label("Game Path: ")); in GCNInfoWindow()
80 keys.push_back(new gcn::Label("RLVM Version: ")); in GCNInfoWindow()
81 keys.push_back(new gcn::Label("rlBabel: ")); in GCNInfoWindow()
84 vector<gcn::Label*> values; in GCNInfoWindow()
85 values.push_back(new gcn::Label(info.game_name)); in GCNInfoWindow()
[all …]
H A Dgcn_scroll_area.cc49 GCNScrollArea::GCNScrollArea(gcn::Widget* widget) : gcn::ScrollArea(widget) { in GCNScrollArea()
65 gcn::ScrollArea::logic(); in logic()
66 gcn::Widget* content = getContent(); in logic()
83 void GCNScrollArea::draw(gcn::Graphics* graphics) { in draw()
140 gcn::Rectangle dim; in drawButton()
191 gcn::Rectangle dim = getVerticalBarDimension(); in drawVBar()
192 graphics->setColor(gcn::Color(0, 0, 0, 32)); in drawVBar()
194 graphics->setColor(gcn::Color(255, 255, 255)); in drawVBar()
200 gcn::Rectangle dim = getHorizontalBarDimension(); in drawHBar()
201 graphics->setColor(gcn::Color(0, 0, 0, 32)); in drawHBar()
[all …]
H A Dgcn_scroll_area.h39 explicit GCNScrollArea(gcn::Widget* widget);
47 virtual void draw(gcn::Graphics* graphics) override;
59 void drawUpButton(gcn::Graphics* graphics);
60 void drawDownButton(gcn::Graphics* graphics);
61 void drawLeftButton(gcn::Graphics* graphics);
62 void drawRightButton(gcn::Graphics* graphics);
63 void drawVBar(gcn::Graphics* graphics);
64 void drawHBar(gcn::Graphics* graphics);
65 void drawVMarker(gcn::Graphics* graphics);
66 void drawHMarker(gcn::Graphics* graphics);
[all …]
H A Dgcn_menu.cc39 using gcn::Button;
55 gcn::Label* menu_title = NULL; in GCNMenu()
57 menu_title = new gcn::Label(title); in GCNMenu()
64 vector<gcn::Button*> buttons; in GCNMenu()
69 gcn::Button* button = new GCNButton(data.label); in GCNMenu()
75 button->setForegroundColor(gcn::Color(100, 100, 100)); in GCNMenu()
89 menu_title->setAlignment(gcn::Graphics::CENTER); in GCNMenu()
92 for (gcn::Button* button : buttons) { in GCNMenu()
94 button->setAlignment(gcn::Graphics::CENTER); in GCNMenu()
106 void GCNMenu::action(const gcn::ActionEvent& actionEvent) { in action()
/dports/games/spacejunk/spacejunk-1.0.5/src/
H A Deditorcontrol.h33 class PromptWindow : public gcn::Window , public gcn::ActionListener {
37 gcn::ScrollArea sa;
39 gcn::Button btDone;
66 gcn::Button play,btDesc,save,load;
67 gcn::TextField patht;
68 Ref<gcn::TextField> txtTime;
92 gcn::DropDown ddObjects;
102 gcn::Container backgroundFill;
106 class NumTextField : public gcn::TextField, gcn::FocusListener {
139 class EditObjectControl : public gcn::ScrollArea, public gcn::ActionListener {
[all …]
H A Dcanvas.h39 class Canvas : public gcn::Widget,public gcn::MouseListener,
40 public gcn::KeyListener {
101 void draw(gcn::Graphics * g);
106 void mousePressed (gcn::MouseEvent& e);
111 void mouseReleased (gcn::MouseEvent& e);
116 void mouseMoved (gcn::MouseEvent& e);
117 void mouseDragged(gcn::MouseEvent& e);
122 void keyPressed (gcn::KeyEvent& e);
127 void keyReleased (gcn::KeyEvent& e);
133 void setDimension(const gcn::Rectangle &gcnr);
/dports/games/stratagus/stratagus-3.2.0/src/ui/
H A Dwidgets.cpp95 gcn::Graphics *graphics; in initGuichan()
106 Gui = new gcn::Gui(); in initGuichan()
324 gcn::Image *img; in draw()
345 case gcn::Graphics::LEFT: in draw()
424 gcn::Image *img = NULL; in drawBox()
588 gcn::Image *img = NULL; in drawBox()
718 gcn::Image *img = NULL; in draw()
1043 gcn::ScrollArea(NULL, gcn::ScrollArea::SHOW_NEVER, gcn::ScrollArea::SHOW_NEVER), in ScrollingWidget()
1235 gcn::Font *font; in draw()
1435 gcn::ScrollArea* scrollArea = dynamic_cast<gcn::ScrollArea *>(getParent()); in setSelected()
[all …]
/dports/games/wyrmgus/Wyrmgus-3.5.4/src/ui/
H A Dwidgets.cpp127 gcn::Graphics *graphics; in initGuichan()
143 Input = new gcn::SDLInput(); in initGuichan()
145 Gui = new gcn::Gui(); in initGuichan()
325 gcn::Rectangle area = gcn::Rectangle(rectangle.x + top.xOffset, in drawRectangle()
351 gcn::Rectangle area = gcn::Rectangle(rectangle.x + top.xOffset, in fillRectangle()
440 gcn::Image *img; in draw()
693 gcn::Image *img; in draw()
1515 gcn::ScrollArea(nullptr, gcn::ScrollArea::SHOW_NEVER, gcn::ScrollArea::SHOW_NEVER), in ScrollingWidget()
1707 gcn::Font *font; in draw()
1909 gcn::ScrollArea* scrollArea = dynamic_cast<gcn::ScrollArea *>(par); in setSelected()
[all …]
/dports/lang/gcc9/gcc-9.4.0/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 PASSES_EXTRA += $(srcdir)/config/gcn/gcn-passes.def
49 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 PASSES_EXTRA += $(srcdir)/config/gcn/gcn-passes.def
49 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 PASSES_EXTRA += $(srcdir)/config/gcn/gcn-passes.def
49 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 PASSES_EXTRA += $(srcdir)/config/gcn/gcn-passes.def
49 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
[all …]
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 PASSES_EXTRA += $(srcdir)/config/gcn/gcn-passes.def
49 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
[all …]
/dports/lang/gcc10/gcc-10.3.0/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 PASSES_EXTRA += $(srcdir)/config/gcn/gcn-passes.def
49 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
51 ALL_HOST_OBJS += gcn-tree.o
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
51 ALL_HOST_OBJS += gcn-tree.o
/dports/lang/gcc11/gcc-11.2.0/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
51 ALL_HOST_OBJS += gcn-tree.o
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/config/gcn/
H A Dt-gcn-hsa19 driver-gcn.o: $(srcdir)/config/gcn/driver-gcn.c
25 mkoffload.o: $(srcdir)/config/gcn/mkoffload.c
35 CFLAGS-gcn-run.o += -DVERSION_STRING=$(PKGVERSION_s)
36 COMPILE-gcn-run.o = $(filter-out -fno-rtti,$(COMPILE))
37 gcn-run.o: $(srcdir)/config/gcn/gcn-run.c
38 $(COMPILE-gcn-run.o) -x c -std=gnu11 -Wno-error=pedantic $<
40 ALL_HOST_OBJS += gcn-run.o
42 gcn-run$(exeext): gcn-run.o
48 gcn-tree.o: $(srcdir)/config/gcn/gcn-tree.c
51 ALL_HOST_OBJS += gcn-tree.o
/dports/games/qonk/qonk-0.3.1/src/ui/
H A Dmenusystem.h25 class KeyListener : public gcn::KeyListener
32 virtual void keyReleased(gcn::KeyEvent &);
35 gcn::Gui *gui;
37 gcn::ImageFont *normal;
38 gcn::ImageFont *highlighted;
40 gcn::Container *top;
48 static gcn::ImageFont *loadFont(std::string);
50 static gcn::Image *loadImage(std::string);
53 MenuSystem(gcn::SDLInput *);
84 gcn::ImageFont *getNormalFont();
[all …]
/dports/www/grafana8/grafana-8.3.6/pkg/services/ngalert/notifier/channels/
H A Dgooglechat.go56 func (gcn *GoogleChatNotifier) Notify(ctx context.Context, as ...*types.Alert) (bool, error) {
57 gcn.log.Debug("Executing Google Chat notification")
60 tmpl, _ := TmplText(ctx, gcn.tmpl, as, gcn.log, &tmplErr)
64 if msg := tmpl(gcn.content); msg != "" {
75 gcn.log.Warn("failed to template Google Chat message", "err", tmplErr.Error())
79 ruleURL := joinUrlPath(gcn.tmpl.ExternalURL.String(), "/alerting/list", gcn.log)
121 u := tmpl(gcn.URL)
123 gcn.log.Warn("failed to template GoogleChat message", "err", tmplErr.Error())
141 gcn.log.Error("Failed to send Google Hangouts Chat alert", "error", err, "webhook", gcn.Name)
148 func (gcn *GoogleChatNotifier) SendResolved() bool {
[all …]

12345678910>>...45