2019-02-11 09:28:05 +01:00
|
|
|
/*******************************************************************************************
|
|
|
|
*
|
|
|
|
* raygui - Controls test
|
|
|
|
*
|
|
|
|
* TEST CONTROLS:
|
|
|
|
* - GuiScrollPanel()
|
|
|
|
*
|
|
|
|
* DEPENDENCIES:
|
|
|
|
* raylib 2.4 - Windowing/input management and drawing.
|
|
|
|
* raygui 2.0 - Immediate-mode GUI controls.
|
|
|
|
*
|
|
|
|
* COMPILATION (Windows - MinGW):
|
|
|
|
* gcc -o $(NAME_PART).exe $(FILE_NAME) -I../../src -lraylib -lopengl32 -lgdi32 -std=c99
|
|
|
|
*
|
2019-02-12 18:38:47 +02:00
|
|
|
* COMPILATION (Linux - gcc):
|
|
|
|
* gcc -o $(NAME_PART) $(FILE_NAME) -I../../src -lraylib -std=c99
|
|
|
|
*
|
2019-02-11 09:28:05 +01:00
|
|
|
* LICENSE: zlib/libpng
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 Vlad Adrian (@Demizdor) and Ramon Santamaria (@raysan5)
|
|
|
|
*
|
|
|
|
**********************************************************************************************/
|
|
|
|
|
|
|
|
#include "raylib.h"
|
|
|
|
|
|
|
|
#define RAYGUI_IMPLEMENTATION
|
|
|
|
#include "../src/raygui.h"
|
|
|
|
|
2019-02-12 18:38:47 +02:00
|
|
|
bool contentArea = true;
|
|
|
|
Rectangle panelContentRec = {0, 0, 340, 340 };
|
|
|
|
void ChangeStyleUI(void);
|
|
|
|
|
2019-02-11 09:28:05 +01:00
|
|
|
//------------------------------------------------------------------------------------
|
|
|
|
// Program main entry point
|
|
|
|
//------------------------------------------------------------------------------------
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// Initialization
|
|
|
|
//---------------------------------------------------------------------------------------
|
2019-02-12 18:38:47 +02:00
|
|
|
const int screenWidth = 800;
|
2019-02-11 09:28:05 +01:00
|
|
|
const int screenHeight = 450;
|
|
|
|
|
|
|
|
InitWindow(screenWidth, screenHeight, "raygui - GuiScrollPanel()");
|
|
|
|
|
2019-02-12 18:38:47 +02:00
|
|
|
Rectangle panelRec = {20, 40, 200, 150 };
|
|
|
|
Vector2 panelScroll = {99, -20};
|
2019-02-11 09:28:05 +01:00
|
|
|
|
|
|
|
SetTargetFPS(60);
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Main game loop
|
|
|
|
while (!WindowShouldClose()) // Detect window close button or ESC key
|
|
|
|
{
|
|
|
|
// Update
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// TODO: Implement required update logic
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Draw
|
|
|
|
//----------------------------------------------------------------------------------
|
2019-02-12 18:38:47 +02:00
|
|
|
BeginDrawing();
|
2019-02-11 09:28:05 +01:00
|
|
|
|
2019-02-12 18:38:47 +02:00
|
|
|
ClearBackground(RAYWHITE);
|
2019-02-11 09:28:05 +01:00
|
|
|
|
|
|
|
DrawText(TextFormat("[%f, %f]", panelScroll.x, panelScroll.y), 4, 4, 20, RED);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
2019-02-11 09:28:05 +01:00
|
|
|
Rectangle view = GuiScrollPanel(panelRec, panelContentRec, &panelScroll);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
2019-02-11 09:28:05 +01:00
|
|
|
BeginScissorMode(view.x, view.y, view.width, view.height);
|
2019-02-12 18:38:47 +02:00
|
|
|
GuiGrid((Rectangle){panelRec.x + panelScroll.x, panelRec.y + panelScroll.y, panelContentRec.width, panelContentRec.height}, 16, 3);
|
2019-02-11 09:28:05 +01:00
|
|
|
EndScissorMode();
|
|
|
|
|
2019-02-12 18:38:47 +02:00
|
|
|
if(contentArea)
|
|
|
|
DrawRectangle(panelRec.x + panelScroll.x, panelRec.y + panelScroll.y, panelContentRec.width, panelContentRec.height, Fade(RED, 0.1));
|
|
|
|
|
|
|
|
ChangeStyleUI();
|
|
|
|
EndDrawing();
|
2019-02-11 09:28:05 +01:00
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
}
|
|
|
|
|
|
|
|
// De-Initialization
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
CloseWindow(); // Close window and OpenGL context
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
return 0;
|
2019-02-12 18:38:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChangeStyleUI()
|
|
|
|
{
|
|
|
|
GuiGroupBox((Rectangle){550,170,220,205}, "SCROLLBAR STYLE");
|
|
|
|
|
2019-04-30 18:33:05 +02:00
|
|
|
int style = GuiGetStyle(SCROLLBAR, BORDER_WIDTH);
|
|
|
|
GuiLabel((Rectangle){555,195,110,10}, "BORDER_WIDTH");
|
2019-02-12 18:38:47 +02:00
|
|
|
GuiSpinner((Rectangle){670,190,90,20}, &style, 0, 6, false);
|
2019-04-30 18:33:05 +02:00
|
|
|
GuiSetStyle(SCROLLBAR, BORDER_WIDTH, style);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
2019-04-30 18:33:05 +02:00
|
|
|
style = GuiGetStyle(SCROLLBAR, ARROWS_SIZE);
|
2019-02-12 18:38:47 +02:00
|
|
|
GuiLabel((Rectangle){555,220,110,10}, "ARROWS_SIZE");
|
|
|
|
GuiSpinner((Rectangle){670,215,90,20}, &style, 4, 14, false);
|
2019-04-30 18:33:05 +02:00
|
|
|
GuiSetStyle(SCROLLBAR, ARROWS_SIZE, style);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
2019-04-30 18:33:05 +02:00
|
|
|
style = GuiGetStyle(SCROLLBAR, INNER_PADDING);
|
|
|
|
GuiLabel((Rectangle){555,245,110,10}, "INNER_PADDING");
|
2019-02-12 18:38:47 +02:00
|
|
|
GuiSpinner((Rectangle){670,240,90,20}, &style, 0, 14, false);
|
2019-04-30 18:33:05 +02:00
|
|
|
GuiSetStyle(SCROLLBAR, INNER_PADDING, style);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
2019-04-30 18:33:05 +02:00
|
|
|
style = GuiCheckBox((Rectangle){565,280,20,20}, "SHOW_SPINNER_BUTTONS", GuiGetStyle(SCROLLBAR, SHOW_SPINNER_BUTTONS));
|
|
|
|
GuiSetStyle(SCROLLBAR, SHOW_SPINNER_BUTTONS, style);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
2019-04-30 18:33:05 +02:00
|
|
|
style = GuiGetStyle(SCROLLBAR, SLIDER_PADDING);
|
2019-02-12 18:38:47 +02:00
|
|
|
GuiLabel((Rectangle){555,325,110,10}, "SLIDER_PADDING");
|
|
|
|
GuiSpinner((Rectangle){670,320,90,20}, &style, 0, 14, false);
|
2019-04-30 18:33:05 +02:00
|
|
|
GuiSetStyle(SCROLLBAR, SLIDER_PADDING, style);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
2019-04-30 18:33:05 +02:00
|
|
|
style = GuiGetStyle(SCROLLBAR, SLIDER_SIZE);
|
2019-02-12 18:38:47 +02:00
|
|
|
GuiLabel((Rectangle){555,350,110,10}, "SLIDER_SIZE");
|
|
|
|
GuiSpinner((Rectangle){670,345,90,20}, &style, 2, 100, false);
|
2019-04-30 18:33:05 +02:00
|
|
|
GuiSetStyle(SCROLLBAR, SLIDER_SIZE, style);
|
2019-02-12 18:38:47 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------
|
|
|
|
|
|
|
|
GuiGroupBox((Rectangle){550,20,220,135}, "SCROLLPANEL STYLE");
|
|
|
|
|
|
|
|
style = GuiGetStyle(LISTVIEW, SCROLLBAR_WIDTH);
|
|
|
|
GuiLabel((Rectangle){555,35,110,10}, "SCROLLBAR_WIDTH");
|
|
|
|
GuiSpinner((Rectangle){670,30,90,20}, &style, 6, 30, false);
|
|
|
|
GuiSetStyle(LISTVIEW, SCROLLBAR_WIDTH, style);
|
|
|
|
|
|
|
|
style = GuiGetStyle(DEFAULT, BORDER_WIDTH);
|
|
|
|
GuiLabel((Rectangle){555,60,110,10}, "BORDER_WIDTH");
|
|
|
|
GuiSpinner((Rectangle){670,55,90,20}, &style, 0, 20, false);
|
|
|
|
GuiSetStyle(DEFAULT, BORDER_WIDTH, style);
|
|
|
|
|
|
|
|
contentArea = GuiCheckBox((Rectangle){565,80,20,20}, "SHOW CONTENT AREA", contentArea);
|
|
|
|
|
|
|
|
const char* text = GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE) == SCROLLBAR_LEFT_SIDE ? "SCROLLBAR: LEFT" : "SCROLLBAR: RIGHT";
|
|
|
|
style = GuiToggle((Rectangle){560,110,200,35}, text, GuiGetStyle(LISTVIEW, SCROLLBAR_SIDE));
|
|
|
|
GuiSetStyle(LISTVIEW, SCROLLBAR_SIDE, style);
|
|
|
|
|
|
|
|
//----------------------------------------------------------
|
|
|
|
|
|
|
|
panelContentRec.width = GuiSliderBar((Rectangle){590,385,145,15}, "WIDTH", panelContentRec.width, 1, 600, true);
|
|
|
|
panelContentRec.height = GuiSliderBar((Rectangle){590,410,145,15}, "HEIGHT", panelContentRec.height, 1, 400, true);
|
2019-02-11 09:28:05 +01:00
|
|
|
}
|