2013-10-27 23:42:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012, 2013, Joel Bodenmann aka Tectu <joel@unormal.org>
|
|
|
|
* Copyright (c) 2012, 2013, Andrew Hannam aka inmarket
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of the <organization> nor the
|
|
|
|
* names of its contributors may be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2013-07-27 12:26:16 +00:00
|
|
|
#include "gfx.h"
|
|
|
|
|
2014-02-01 14:38:37 +00:00
|
|
|
GListener gl;
|
|
|
|
GHandle ghLabel1, ghLabel2;
|
|
|
|
GHandle ghList1, ghList2;
|
2013-07-27 12:26:16 +00:00
|
|
|
|
|
|
|
static void createWidgets(void) {
|
|
|
|
GWidgetInit wi;
|
|
|
|
|
|
|
|
// Apply some default values for GWIN
|
2014-05-09 11:25:31 +00:00
|
|
|
gwinWidgetClearInit(&wi);
|
2014-02-01 14:38:37 +00:00
|
|
|
wi.g.show = TRUE;
|
|
|
|
|
|
|
|
// Create the label for the first list
|
|
|
|
wi.g.width = 150; wi.g.height = 20; wi.g.x = 10, wi.g.y = 80;
|
|
|
|
wi.text = "List 1: Default";
|
2014-05-11 03:10:50 +00:00
|
|
|
ghLabel1 = gwinLabelCreate(0, &wi);
|
2014-02-01 14:38:37 +00:00
|
|
|
|
|
|
|
// Create the label for the second list
|
|
|
|
wi.g.width = 150; wi.g.height = 20; wi.g.x = 165, wi.g.y = 80;
|
|
|
|
wi.text = "List 2: Smooth scrolling";
|
2014-05-11 03:10:50 +00:00
|
|
|
ghLabel1 = gwinLabelCreate(0, &wi);
|
2014-02-01 14:38:37 +00:00
|
|
|
|
|
|
|
// The first list widget
|
|
|
|
wi.g.width = 150;
|
|
|
|
wi.g.height = 100;
|
|
|
|
wi.g.y = 100;
|
2013-07-27 12:26:16 +00:00
|
|
|
wi.g.x = 10;
|
2014-02-01 14:38:37 +00:00
|
|
|
wi.text = "Name of list 1";
|
2013-12-21 03:21:59 +00:00
|
|
|
ghList1 = gwinListCreate(0, &wi, FALSE);
|
2014-02-01 14:38:37 +00:00
|
|
|
|
|
|
|
// The second list widget
|
|
|
|
wi.g.width = 150;
|
|
|
|
wi.g.height = 100;
|
|
|
|
wi.g.y = 100;
|
|
|
|
wi.g.x = 165;
|
|
|
|
wi.text = "Name of list 2";
|
|
|
|
ghList2 = gwinListCreate(0, &wi, FALSE);
|
|
|
|
gwinListSetScroll(ghList2, scrollSmooth);
|
2013-07-27 12:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
GEvent* pe;
|
|
|
|
|
|
|
|
// Initialize the display
|
|
|
|
gfxInit();
|
|
|
|
|
|
|
|
// Set the widget defaults
|
2014-02-03 07:57:38 +00:00
|
|
|
gwinSetDefaultFont(gdispOpenFont("UI2"));
|
2013-07-27 12:26:16 +00:00
|
|
|
gwinSetDefaultStyle(&WhiteWidgetStyle, FALSE);
|
2013-10-27 23:42:38 +00:00
|
|
|
gdispClear(White);
|
2013-07-27 12:26:16 +00:00
|
|
|
|
|
|
|
// Attach the mouse input
|
|
|
|
gwinAttachMouse(0);
|
|
|
|
|
|
|
|
// create the widget
|
|
|
|
createWidgets();
|
|
|
|
|
|
|
|
// We want to listen for widget events
|
|
|
|
geventListenerInit(&gl);
|
|
|
|
gwinAttachListener(&gl);
|
|
|
|
|
2014-02-01 14:38:37 +00:00
|
|
|
// Add some items to the first list widget
|
2013-08-01 04:50:40 +00:00
|
|
|
gwinListAddItem(ghList1, "Item 0", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 1", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 2", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 3", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 4", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 5", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 6", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 7", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 8", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 9", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 10", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 11", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 12", FALSE);
|
|
|
|
gwinListAddItem(ghList1, "Item 13", FALSE);
|
|
|
|
|
2014-02-01 14:38:37 +00:00
|
|
|
// Add some items to the second list widget
|
2014-04-26 01:27:19 +00:00
|
|
|
// This time we will disable the render until
|
|
|
|
// all the items have been added
|
|
|
|
gwinListEnableRender(ghList2, FALSE);
|
2014-02-01 14:38:37 +00:00
|
|
|
gwinListAddItem(ghList2, "Item 0", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 1", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 2", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 3", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 4", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 5", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 6", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 7", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 8", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 9", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 10", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 11", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 12", FALSE);
|
|
|
|
gwinListAddItem(ghList2, "Item 13", FALSE);
|
2014-04-26 01:27:19 +00:00
|
|
|
gwinListEnableRender(ghList2, TRUE);
|
2013-07-27 12:26:16 +00:00
|
|
|
|
|
|
|
while(1) {
|
|
|
|
// Get an Event
|
|
|
|
pe = geventEventWait(&gl, TIME_INFINITE);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|