tabbing
This commit is contained in:
parent
8e30b0033d
commit
8119b3e4de
93
main.cpp
93
main.cpp
@ -222,36 +222,75 @@ int main(int, char**)
|
|||||||
ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_None;
|
ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_None;
|
||||||
if (ImGui::BeginTabBar("top secret", tab_bar_flags))
|
if (ImGui::BeginTabBar("top secret", tab_bar_flags))
|
||||||
{
|
{
|
||||||
if (ImGui::BeginTabItem("top secret"))
|
|
||||||
|
if (ImGui::BeginTabItem("top secret government tools"))
|
||||||
{
|
{
|
||||||
ImGui::SetCursorPos(ImVec2(ImGui::GetWindowWidth() - ImGui::CalcTextSize("X").x - 10, 23));
|
ImGui::Checkbox("disable france", &disable_france);
|
||||||
|
ImGui::SliderInt("time to disable (in decades)", &time, 0, 31);
|
||||||
|
if (ImGui::Button("show output")) {
|
||||||
|
show_output = true;
|
||||||
|
}
|
||||||
|
ImGui::EndTabItem();
|
||||||
|
}
|
||||||
|
if (ImGui::BeginTabItem("mafia tools"))
|
||||||
|
{
|
||||||
|
ImGui::PushFont(iconfont);
|
||||||
|
ImGui::Text("k");
|
||||||
|
ImGui::PopFont();
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
ImGui::Button("close");
|
if (ImGui::Button("add badass mafia toolbar to internet explorer"))
|
||||||
if (ImGui::IsItemClicked()) {
|
ImGui::OpenPopup("success");
|
||||||
exit(0);
|
if (ImGui::BeginPopupModal("success", NULL))
|
||||||
};
|
{
|
||||||
ImGui::Checkbox("disable france", &disable_france);
|
ImGui::Text("successfully added badass mafia toolbar to browser.");
|
||||||
ImGui::SliderInt("time to disable (in decades)", &time, 0, 31);
|
if (ImGui::Button("Close"))
|
||||||
if (ImGui::Button("show output")) {
|
ImGui::CloseCurrentPopup();
|
||||||
show_output = true;
|
ImGui::EndPopup();
|
||||||
|
}
|
||||||
|
ImGui::Separator();
|
||||||
|
ImGui::PushFont(iconfont);
|
||||||
|
ImGui::Text("k");
|
||||||
|
ImGui::PopFont();
|
||||||
|
ImGui::SameLine();
|
||||||
|
if (ImGui::Button("install Gratis pobierz Descargar Download manager kup teraz Windows7 Repair tool"))
|
||||||
|
ImGui::OpenPopup("repair");
|
||||||
|
if (ImGui::BeginPopupModal("repair", NULL))
|
||||||
|
{
|
||||||
|
ImGui::Text("successfully installed polish windows 7 repair tool.");
|
||||||
|
if (ImGui::Button("Close"))
|
||||||
|
ImGui::CloseCurrentPopup();
|
||||||
|
ImGui::EndPopup();
|
||||||
|
}
|
||||||
|
ImGui::Separator();
|
||||||
|
ImGui::PushFont(iconfont);
|
||||||
|
ImGui::Text("k");
|
||||||
|
ImGui::PopFont();
|
||||||
|
ImGui::SameLine();
|
||||||
|
if (ImGui::Button("install Facebook Blaster Pro Tool"))
|
||||||
|
ImGui::OpenPopup("blast");
|
||||||
|
if (ImGui::BeginPopupModal("blast", NULL))
|
||||||
|
{
|
||||||
|
ImGui::Text("successfully blasted your Facebook");
|
||||||
|
if (ImGui::Button("Close"))
|
||||||
|
ImGui::CloseCurrentPopup();
|
||||||
|
ImGui::EndPopup();
|
||||||
|
}
|
||||||
|
ImGui::Image((void*)kup, ImVec2(kup_img_width, kup_img_height));
|
||||||
|
ImGui::Separator();
|
||||||
|
ImGui::ProgressBar(-1.0f * (float)ImGui::GetTime(), ImVec2(0.0f, 0.0f), "automatically downloading all tools without your consent...");
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::Button("stop download");
|
||||||
|
if (ImGui::IsItemClicked()) {
|
||||||
|
exit(0);
|
||||||
|
};
|
||||||
|
ImGui::EndTabItem();
|
||||||
|
}
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::Button("close");
|
||||||
|
if (ImGui::IsItemClicked()) {
|
||||||
|
exit(0);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
ImGui::PushFont(iconfont);
|
|
||||||
ImGui::Text("k");
|
|
||||||
ImGui::PopFont();
|
|
||||||
ImGui::SameLine();
|
|
||||||
if (ImGui::Button("download badass mafia toolbar"))
|
|
||||||
ImGui::OpenPopup("success");
|
|
||||||
if (ImGui::BeginPopupModal("success", NULL))
|
|
||||||
{
|
|
||||||
ImGui::Text("successfully added badass mafia toolbar to browser.");
|
|
||||||
if (ImGui::Button("Close"))
|
|
||||||
ImGui::CloseCurrentPopup();
|
|
||||||
ImGui::EndPopup();
|
|
||||||
}
|
|
||||||
ImGui::Image((void*)kup, ImVec2(kup_img_width, kup_img_height));
|
|
||||||
ImGui::EndTabItem();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ImGui::EndTabBar();
|
ImGui::EndTabBar();
|
||||||
}
|
}
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
|
Loading…
Reference in New Issue
Block a user