2015-03-09 11:25:15 +00:00
|
|
|
// ImGui - standalone example application for Glfw + OpenGL 2, using fixed pipeline
|
2014-12-03 18:29:46 +00:00
|
|
|
|
2015-03-09 11:25:15 +00:00
|
|
|
#include <imgui.h>
|
|
|
|
#include "imgui_impl_glfw.h"
|
2015-01-08 23:35:01 +00:00
|
|
|
#include <stdio.h>
|
2014-09-25 13:54:19 +00:00
|
|
|
#include <GLFW/glfw3.h>
|
2014-09-30 08:57:44 +00:00
|
|
|
|
2015-03-09 11:25:15 +00:00
|
|
|
static void error_callback(int error, const char* description)
|
2014-08-10 21:02:33 +00:00
|
|
|
{
|
2015-03-09 11:25:15 +00:00
|
|
|
fprintf(stderr, "Error: %s\n", description);
|
2014-08-10 21:02:33 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 11:25:15 +00:00
|
|
|
int main(int argc, char** argv)
|
2014-08-10 21:02:33 +00:00
|
|
|
{
|
2015-03-09 13:02:32 +00:00
|
|
|
// Setup window
|
2015-03-09 11:25:15 +00:00
|
|
|
glfwSetErrorCallback(error_callback);
|
2014-08-19 11:09:13 +00:00
|
|
|
if (!glfwInit())
|
|
|
|
exit(1);
|
2015-03-09 11:25:15 +00:00
|
|
|
GLFWwindow* window = glfwCreateWindow(1280, 720, "ImGui OpenGL2 example", NULL, NULL);
|
2014-08-19 11:09:13 +00:00
|
|
|
glfwMakeContextCurrent(window);
|
2014-08-11 14:02:33 +00:00
|
|
|
|
2015-03-09 13:02:32 +00:00
|
|
|
// Setup ImGui binding
|
2015-03-09 11:25:15 +00:00
|
|
|
ImGui_ImplGlfw_Init(window, true);
|
|
|
|
//ImGuiIO& io = ImGui::GetIO();
|
2015-01-18 11:38:14 +00:00
|
|
|
//ImFont* my_font1 = io.Fonts->AddFontDefault();
|
|
|
|
//ImFont* my_font2 = io.Fonts->AddFontFromFileTTF("extra_fonts/Karla-Regular.ttf", 15.0f);
|
|
|
|
//ImFont* my_font3 = io.Fonts->AddFontFromFileTTF("extra_fonts/ProggyClean.ttf", 13.0f); my_font3->DisplayOffset.y += 1;
|
|
|
|
//ImFont* my_font4 = io.Fonts->AddFontFromFileTTF("extra_fonts/ProggyTiny.ttf", 10.0f); my_font4->DisplayOffset.y += 1;
|
2015-03-06 21:39:50 +00:00
|
|
|
//ImFont* my_font5 = io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, io.Fonts->GetGlyphRangesJapanese());
|
2014-08-19 11:09:13 +00:00
|
|
|
|
2015-01-15 09:59:18 +00:00
|
|
|
bool show_test_window = true;
|
|
|
|
bool show_another_window = false;
|
2015-03-09 11:25:15 +00:00
|
|
|
ImVec4 clear_color = ImColor(114, 144, 154);
|
2015-01-15 09:59:18 +00:00
|
|
|
|
2015-03-09 13:02:32 +00:00
|
|
|
// Main loop
|
2014-08-19 11:09:13 +00:00
|
|
|
while (!glfwWindowShouldClose(window))
|
|
|
|
{
|
|
|
|
glfwPollEvents();
|
2015-03-09 11:25:15 +00:00
|
|
|
ImGui_ImplGlfw_NewFrame();
|
2014-08-19 11:09:13 +00:00
|
|
|
|
2014-09-30 09:09:44 +00:00
|
|
|
// 1. Show a simple window
|
|
|
|
// Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets appears in a window automatically called "Debug"
|
2014-08-19 11:09:13 +00:00
|
|
|
{
|
2014-09-30 09:09:44 +00:00
|
|
|
static float f;
|
|
|
|
ImGui::Text("Hello, world!");
|
|
|
|
ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
|
2015-03-09 11:25:15 +00:00
|
|
|
ImGui::ColorEdit3("clear color", (float*)&clear_color);
|
2015-01-15 09:59:18 +00:00
|
|
|
if (ImGui::Button("Test Window")) show_test_window ^= 1;
|
|
|
|
if (ImGui::Button("Another Window")) show_another_window ^= 1;
|
2015-02-11 18:28:17 +00:00
|
|
|
ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
|
2014-08-19 11:09:13 +00:00
|
|
|
}
|
|
|
|
|
2014-09-30 09:09:44 +00:00
|
|
|
// 2. Show another simple window, this time using an explicit Begin/End pair
|
2014-08-19 11:09:13 +00:00
|
|
|
if (show_another_window)
|
|
|
|
{
|
|
|
|
ImGui::Begin("Another Window", &show_another_window, ImVec2(200,100));
|
|
|
|
ImGui::Text("Hello");
|
|
|
|
ImGui::End();
|
|
|
|
}
|
|
|
|
|
2014-09-30 09:09:44 +00:00
|
|
|
// 3. Show the ImGui test window. Most of the sample code is in ImGui::ShowTestWindow()
|
|
|
|
if (show_test_window)
|
|
|
|
{
|
2015-02-27 09:51:11 +00:00
|
|
|
ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiSetCond_FirstUseEver);
|
2014-09-30 09:09:44 +00:00
|
|
|
ImGui::ShowTestWindow(&show_test_window);
|
|
|
|
}
|
|
|
|
|
2014-08-19 11:09:13 +00:00
|
|
|
// Rendering
|
2015-03-09 11:25:15 +00:00
|
|
|
glViewport(0, 0, (int)ImGui::GetIO().DisplaySize.x, (int)ImGui::GetIO().DisplaySize.y);
|
|
|
|
glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
|
2014-08-19 11:09:13 +00:00
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
ImGui::Render();
|
|
|
|
glfwSwapBuffers(window);
|
|
|
|
}
|
|
|
|
|
2014-12-03 18:46:13 +00:00
|
|
|
// Cleanup
|
2015-03-09 11:25:15 +00:00
|
|
|
ImGui_ImplGlfw_Shutdown();
|
2014-08-19 11:09:13 +00:00
|
|
|
glfwTerminate();
|
2014-12-03 18:40:28 +00:00
|
|
|
|
2014-12-03 18:46:13 +00:00
|
|
|
return 0;
|
2014-08-10 21:02:33 +00:00
|
|
|
}
|