Browse Source

Start text example

gh-pages
falkTX 11 years ago
parent
commit
d4ff8bbb60
3 changed files with 79 additions and 3 deletions
  1. +1
    -0
      .gitignore
  2. +6
    -3
      examples/Makefile
  3. +72
    -0
      examples/text.cpp

+ 1
- 0
.gitignore View File

@@ -13,3 +13,4 @@ examples/cairo
examples/color
examples/images
examples/nekobi-ui
examples/text

+ 6
- 3
examples/Makefile View File

@@ -14,12 +14,12 @@ LINK_FLAGS += -L.. -ldgl $(DGL_LIBS)
# --------------------------------------------------------------

ifeq ($(WIN32),true)
TARGETS = app.exe color.exe images.exe nekobi-ui.exe
TARGETS = app.exe color.exe images.exe nekobi-ui.exe text.exe
else
ifeq ($(MACOS),true)
TARGETS = app color images nekobi-ui
TARGETS = app color images nekobi-ui text
else
TARGETS = app cairo color images nekobi-ui
TARGETS = app cairo color images nekobi-ui text
endif
endif

@@ -61,6 +61,9 @@ images: images.cpp images_src/* ../dgl/*
nekobi-ui: nekobi-ui.cpp nekobi-ui_src/* ../dgl/*
$(CXX) $< $(BUILD_CXX_FLAGS) $(LINK_FLAGS) -o $@

text: text.cpp ../dgl/*
$(CXX) $< $(BUILD_CXX_FLAGS) $(LINK_FLAGS) -o $@

# --------------------------------------------------------------

.FORCE:


+ 72
- 0
examples/text.cpp View File

@@ -0,0 +1,72 @@
/*
* DISTRHO Plugin Framework (DPF)
* Copyright (C) 2012-2014 Filipe Coelho <falktx@falktx.com>
*
* Permission to use, copy, modify, and/or distribute this software for any purpose with
* or without fee is hereby granted, provided that the above copyright notice and this
* permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
* TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
* NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/

// ------------------------------------------------------
// DGL Stuff

#include "App.hpp"
#include "Window.hpp"
#include "Widget.hpp"

#include <cstdio>

// ------------------------------------------------------
// use namespace

using namespace DGL;

// ------------------------------------------------------
// Single color widget

class TextWidget : public Widget
{
public:
TextWidget(Window& parent)
: Widget(parent)
{
}

private:
void onDisplay() override
{
}

void onReshape(int width, int height) override
{
// make widget same size as window
setSize(width, height);
Widget::onReshape(width, height);
}
};

// ------------------------------------------------------
// main entry point

int main()
{
App app;
Window win(app);
TextWidget color(win);

win.setSize(600, 300);
win.setTitle("Text");
win.show();
app.exec();

return 0;
}

// ------------------------------------------------------

Loading…
Cancel
Save