Github User Fetcher 1.0.0
C Application with Server and GUI
|
GUI application for fetching and displaying GitHub user information. More...
#include "user.hpp"
#include <future>
#include <gtkmm.h>
#include <iostream>
#include <nlohmann/json.hpp>
#include <sstream>
#include <thread>
#include "style_css.hpp"
Go to the source code of this file.
Data Structures | |
class | GitHubUserFetcherWindow |
Main application window for the GitHub user fetcher GUI. More... | |
Functions | |
int | main (int argc, char *argv[]) |
Application entry point for the GUI. | |
GUI application for fetching and displaying GitHub user information.
This file defines a GTK-based graphical user interface that allows users to input a GitHub username, fetch user information via HTTP, and display it as formatted JSON. The GUI is styled with embedded CSS.
Definition in file gui.cpp.
int main | ( | int | argc, |
char * | argv[] ) |
Application entry point for the GUI.
Initializes and runs the GTK application, creating a single main window.
argc | Argument count. |
argv | Argument vector. |
Definition at line 147 of file gui.cpp.