fix awdw solo vicon crash, fix nested clip for binfolders, open edit edl
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / performanceprefs.h
index 61d43a5d49cfe1891dab260e603ac853c68b12b5..e9acd3c70f8c9212170ec900c36ceb078209ee3f 100644 (file)
@@ -46,6 +46,7 @@ public:
        int hot_node;
 
        CICacheSize *cache_size;
+       PerfsUseHWDev *use_hw_dev;
 
        enum
        {
@@ -337,5 +338,24 @@ public:
        PreferencesWindow *pwindow;
 };
 
+class PrefsUseHWDevItems : public ArrayList<BC_ListBoxItem *>
+{
+public:
+       PrefsUseHWDevItems() {}
+       ~PrefsUseHWDevItems() { remove_all_objects(); }
+};
+
+class PrefsUseHWDev : public BC_PopupTextBox
+{
+public:
+       PrefsUseHWDev(PreferencesWindow *pwindow,
+               PerformancePrefs *subwindow, int x, int y);
+       void create_objects();
+       int handle_event();
+
+       PreferencesWindow *pwindow;
+       PrefsUseHWDevItems hw_dev_names;
+};
+
 
 #endif