// texturetest.cc a test app for Textures // Copyright (c) 2004 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) #include "ImageControl.hh" #include "Color.hh" #include "GContext.hh" #include "FbPixmap.hh" #include "Texture.hh" #include "FbWindow.hh" #include "EventHandler.hh" #include "EventManager.hh" #include "Theme.hh" #include "Font.hh" #include "App.hh" #include #include using namespace std; using namespace FbTk; class TestTheme: public Theme { public: TestTheme(int screen):Theme(screen) { } bool fallback(ThemeItem_base &item) { return false; } void reconfigTheme() { } }; class Application: public FbTk::FbWindow, public FbTk::EventHandler { public: Application(int box_size, int num): FbWindow(0, 0, 0, 640, box_size*num/8 - 3*5, ExposureMask | KeyPressMask), m_box_size(box_size), m_num(num), m_font("fixed"), m_imgctrl(screenNumber(), true, 8, 100, 100), m_background(*this, 640, 480, depth()), m_gc(m_background) { setName("Texture Test"); setBackgroundPixmap(m_background.drawable()); FbTk::EventManager::instance()->add(*this, *this); renderPixmaps(); show(); } void keyPressEvent(XKeyEvent &ev) { App::instance()->end(); } void exposeEvent(XExposeEvent &ev) { clear(); } private: void renderPixmap(const Texture &text, int x, int y) { Pixmap pm = m_imgctrl.renderImage(m_box_size, m_box_size, text); m_background.copyArea(pm, m_gc.gc(), 0, 0, x, y, m_box_size, m_box_size); m_imgctrl.removeImage(pm); } void renderPixmaps() { m_gc.setForeground(Color("gray", screenNumber())); m_background.fillRectangle(m_gc.gc(), 0, 0, width(), height()); // for text color m_gc.setForeground(Color("black", screenNumber())); const int step_size = m_box_size + 5; int next_x = 5; int next_y = 5; TestTheme tm(screenNumber()); std::auto_ptr > text; char value[18]; for (int i=0; i (tm, string("texture") + value, string("Texture") + value)); // load new style ThemeManager::instance().load("test.theme"); renderPixmap(**text.get(), next_x, next_y); next_x += step_size; if (next_x + m_box_size > width()) { m_font.drawText(m_background, screenNumber(), m_gc.gc(), value, strlen(value), next_x, next_y + m_box_size/2); next_x = 5; next_y += step_size; } } } const int m_box_size; const int m_num; FbTk::Font m_font; ImageControl m_imgctrl; FbPixmap m_background; FbTk::GContext m_gc; }; int main(int argc, char **argv) { int boxsize= 60; int num = 63; for (int i=1; i