diff --git a/main.cpp b/main.cpp index 9ef7370..d05ad3a 100644 --- a/main.cpp +++ b/main.cpp @@ -222,36 +222,75 @@ int main(int, char**) ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_None; 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::Button("close"); - if (ImGui::IsItemClicked()) { - exit(0); - }; - ImGui::Checkbox("disable france", &disable_france); - ImGui::SliderInt("time to disable (in decades)", &time, 0, 31); - if (ImGui::Button("show output")) { - show_output = true; + if (ImGui::Button("add badass mafia toolbar to internet explorer")) + 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::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::End();