X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fmenu%2Fxonotic%2Fsoundlist.qc;h=13e6ba34c03395f74fbe2f7f6fccfa3c26fd16f6;hb=eb877d9a99429c3ffc846377fac46fb750af8620;hp=961c5b00be757e34c4aa6bb389cd6591594baef3;hpb=692cb758fe8f25fa078bfd5885333ee031885600;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/menu/xonotic/soundlist.qc b/qcsrc/menu/xonotic/soundlist.qc index 961c5b00b..13e6ba34c 100644 --- a/qcsrc/menu/xonotic/soundlist.qc +++ b/qcsrc/menu/xonotic/soundlist.qc @@ -1,41 +1,7 @@ -#ifndef SOUNDLIST_H -#define SOUNDLIST_H -#include "listbox.qc" -CLASS(XonoticSoundList, XonoticListBox) - METHOD(XonoticSoundList, configureXonoticSoundList, void(entity)); - ATTRIB(XonoticSoundList, rowsPerItem, float, 1) - METHOD(XonoticSoundList, resizeNotify, void(entity, vector, vector, vector, vector)); - METHOD(XonoticSoundList, drawListBoxItem, void(entity, int, vector, bool, bool)); - METHOD(XonoticSoundList, getSounds, void(entity)); - METHOD(XonoticSoundList, soundName, string(entity, int)); - METHOD(XonoticSoundList, doubleClickListBoxItem, void(entity, int, vector)); - METHOD(XonoticSoundList, keyDown, float(entity, float, float, float)); - METHOD(XonoticSoundList, destroy, void(entity)); - METHOD(XonoticSoundList, showNotify, void(entity)); - - ATTRIB(XonoticSoundList, listSound, int, -1) - ATTRIB(XonoticSoundList, realFontSize, vector, '0 0 0') - ATTRIB(XonoticSoundList, columnNameOrigin, float, 0) - ATTRIB(XonoticSoundList, columnNameSize, float, 0) - ATTRIB(XonoticSoundList, columnNumberOrigin, float, 0) - ATTRIB(XonoticSoundList, columnNumberSize, float, 0) - ATTRIB(XonoticSoundList, realUpperMargin, float, 0) - ATTRIB(XonoticSoundList, origin, vector, '0 0 0') - ATTRIB(XonoticSoundList, itemAbsSize, vector, '0 0 0') - - ATTRIB(XonoticSoundList, filterString, string, string_null) - ATTRIB(XonoticSoundList, playlist, entity, NULL) -ENDCLASS(XonoticSoundList) - -entity makeXonoticSoundList(); -void SoundList_Filter_Change(entity box, entity me); -void SoundList_Add(entity box, entity me); -void SoundList_Add_All(entity box, entity me); -void SoundList_Menu_Track_Change(entity box, entity me); -void SoundList_Menu_Track_Reset(entity box, entity me); -#endif - -#ifdef IMPLEMENTATION +#include "soundlist.qh" + +#include "inputbox.qh" +#include "playlist.qh" entity makeXonoticSoundList() { @@ -175,5 +141,3 @@ float XonoticSoundList_keyDown(entity me, float scan, float ascii, float shift) else return SUPER(XonoticSoundList).keyDown(me, scan, ascii, shift); } -#endif -