nngn
Loading...
Searching...
No Matches
window.cpp File Reference
#include "window.h"
#include <charconv>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <QCheckBox>
#include <QGroupBox>
#include <QLineEdit>
#include <QPlainTextEdit>
#include <QPushButton>
#include <QSplitter>
#include <QTabWidget>
#include <QVBoxLayout>
#include "float_widget.h"
#include "int_widget.h"
Include dependency graph for window.cpp:

Namespaces

namespace  anonymous_namespace{window.cpp}
 

Functions

int anonymous_namespace{window.cpp}::min_height (QPlainTextEdit *e)
 
bool anonymous_namespace{window.cpp}::read_title (std::string_view *s, std::string_view *title)
 
bool anonymous_namespace{window.cpp}::read_int_value (std::string_view *s, int *p)
 
bool anonymous_namespace{window.cpp}::read_bool_values (std::string_view *text, int *value, std::string_view *title)
 
bool anonymous_namespace{window.cpp}::read_int_values (std::string_view *text, int *min, int *max, int *value, std::string_view *title)
 
bool anonymous_namespace{window.cpp}::read_float_values (std::string_view *text, int *min, int *max, int *value, int *div, std::string_view *title)
 
void anonymous_namespace{window.cpp}::connect_text (Window *w, QLineEdit *e, QPlainTextEdit *t)
 
void anonymous_namespace{window.cpp}::connect_int (Window *w, IntWidget *i, QPlainTextEdit *t)
 
void anonymous_namespace{window.cpp}::connect_float (Window *w, FloatWidget *i, QPlainTextEdit *t)
 
void anonymous_namespace{window.cpp}::connect_bool (Window *w, QCheckBox *i, QPlainTextEdit *t)
 
QPlainTextEdit * anonymous_namespace{window.cpp}::add_common (Window *w, QLayoutItem *i, std::string_view title, std::string_view text)
 
bool anonymous_namespace{window.cpp}::add_generic_widget (Window *w, std::string_view text)
 
bool anonymous_namespace{window.cpp}::add_text_widget (Window *w, std::string_view text)
 
bool anonymous_namespace{window.cpp}::add_int_widget (Window *w, std::string_view text)
 
bool anonymous_namespace{window.cpp}::add_float_widget (Window *w, std::string_view text)
 
bool anonymous_namespace{window.cpp}::add_bool_widget (Window *w, std::string_view text)