X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fxonotic%2Fdialog_settings_input.qc;h=7f3af39f878be318dad0a2210eb7291c08b13e39;hb=f72821fdcebe3ca01181a99727a06198de65ea08;hp=9eab078ad6e9366d18344b3141f3ceb61ab9e0de;hpb=18e2cd311a581f77ba8eb9c5421dd219ff5d760d;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/xonotic/dialog_settings_input.qc b/qcsrc/menu/xonotic/dialog_settings_input.qc index 9eab078ad..7f3af39f8 100644 --- a/qcsrc/menu/xonotic/dialog_settings_input.qc +++ b/qcsrc/menu/xonotic/dialog_settings_input.qc @@ -1,16 +1,15 @@ -#ifndef DIALOG_SETTINGS_INPUT_H -#define DIALOG_SETTINGS_INPUT_H -#include "tab.qc" -CLASS(XonoticInputSettingsTab, XonoticTab) - METHOD(XonoticInputSettingsTab, fill, void(entity)); - ATTRIB(XonoticInputSettingsTab, intendedWidth, float, 0.9) - ATTRIB(XonoticInputSettingsTab, rows, float, 15.5) - ATTRIB(XonoticInputSettingsTab, columns, float, 6.2) // added extra .2 for center space -ENDCLASS(XonoticInputSettingsTab) -entity makeXonoticInputSettingsTab(); -#endif +#include "dialog_settings_input.qh" + +#include "dialog_settings_input_userbind.qh" +#include "skinlist.qh" +#include "slider_resolution.qh" +#include "../item/checkbox.qh" +#include "keybinder.qh" +#include "textlabel.qh" +#include "button.qh" +#include "slider.qh" +#include "checkbox.qh" -#ifdef IMPLEMENTATION entity makeXonoticInputSettingsTab() { entity me; @@ -121,4 +120,3 @@ void XonoticInputSettingsTab_fill(entity me) e.disabled = 1; // the option is never available in this case, just there for show } } -#endif