Commit 61fc0c2f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Prepare the work for file association from the interface.

Ref #763.
parent 78109a20
...@@ -396,9 +396,12 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent, ...@@ -396,9 +396,12 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
#if defined( WIN32 ) || defined (__APPLE__) #if defined( WIN32 ) || defined (__APPLE__)
CONFIG_GENERIC( "language", StringList, NULL, language ); CONFIG_GENERIC( "language", StringList, NULL, language );
BUTTONACT( ui.assoButton, assoDialog );
#else #else
ui.language->hide(); ui.language->hide();
ui.languageLabel->hide(); ui.languageLabel->hide();
ui.assoName->hide();
ui.assoButton->hide();
#endif #endif
/* interface */ /* interface */
...@@ -621,3 +624,8 @@ void SPrefsPanel::lastfm_Changed( int i_state ) ...@@ -621,3 +624,8 @@ void SPrefsPanel::lastfm_Changed( int i_state )
else if( i_state == Qt::Unchecked ) else if( i_state == Qt::Unchecked )
config_RemoveIntf( VLC_OBJECT( p_intf ), "audioscrobbler" ); config_RemoveIntf( VLC_OBJECT( p_intf ), "audioscrobbler" );
} }
void SPrefsPanel::assoDialog()
{
}
...@@ -100,6 +100,7 @@ private: ...@@ -100,6 +100,7 @@ private:
private slots: private slots:
void lastfm_Changed( int ); void lastfm_Changed( int );
void updateAudioOptions( int ); void updateAudioOptions( int );
void assoDialog();
}; };
#endif #endif
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>445</width> <width>485</width>
<height>535</height> <height>578</height>
</rect> </rect>
</property> </property>
<property name="windowTitle" > <property name="windowTitle" >
...@@ -136,21 +136,41 @@ ...@@ -136,21 +136,41 @@
<property name="title" > <property name="title" >
<string>_("Instances")</string> <string>_("Instances")</string>
</property> </property>
<layout class="QVBoxLayout" > <layout class="QGridLayout" >
<item> <item row="0" column="0" colspan="2" >
<widget class="QCheckBox" name="OneInterfaceMode" > <widget class="QCheckBox" name="OneInterfaceMode" >
<property name="text" > <property name="text" >
<string>_("Allow only one instance")</string> <string>_("Allow only one instance")</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item row="1" column="0" colspan="2" >
<widget class="QCheckBox" name="EnqueueOneInterfaceMode" > <widget class="QCheckBox" name="EnqueueOneInterfaceMode" >
<property name="text" > <property name="text" >
<string>_("Enqueue files in playlist when in one instance mode")</string> <string>_("Enqueue files in playlist when in one instance mode")</string>
</property> </property>
</widget> </widget>
</item> </item>
<item row="2" column="0" >
<widget class="QLabel" name="assoName" >
<property name="text" >
<string>_("File associations:")</string>
</property>
</widget>
</item>
<item row="2" column="1" >
<widget class="QPushButton" name="assoButton" >
<property name="sizePolicy" >
<sizepolicy vsizetype="Fixed" hsizetype="Maximum" >
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text" >
<string>_("Association Setup")</string>
</property>
</widget>
</item>
</layout> </layout>
</widget> </widget>
</item> </item>
......
// License GPLv2+
#include "registry.hpp"
QVLCRegistry::QVLCRegistry(HKEY rootKey)
{
this->m_RootKey = rootKey;
}
QVLCRegistry::~QVLCRegistry(void)
{
}
int QVLCRegistry::RegistryKeyExists(char *path) {
HKEY keyHandle;
if( RegOpenKeyEx(m_RootKey, path, 0, KEY_READ, &keyHandle) == ERROR_SUCCESS) {
RegCloseKey(keyHandle);
return 1;
}
return 0;
}
int QVLCRegistry::RegistryValueExists(char *path, char *valueName) {
HKEY keyHandle;
int temp = 0;
DWORD size1;
DWORD valueType;
if( RegOpenKeyEx(m_RootKey, path, 0, KEY_READ, &keyHandle) == ERROR_SUCCESS) {
if(RegQueryValueEx( keyHandle, valueName, NULL, &valueType, NULL, &size1) == ERROR_SUCCESS) {
temp = 1;
}
RegCloseKey(keyHandle);
}
return temp;
}
void QVLCRegistry::WriteRegistryInt(char *path, char *valueName, int value) {
HKEY keyHandle;
if( RegCreateKeyEx(m_RootKey, path, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &keyHandle, NULL) == ERROR_SUCCESS) {
RegSetValueEx(keyHandle,valueName,0,REG_DWORD,(LPBYTE)&value,sizeof(int));
RegCloseKey(keyHandle);
}
}
void QVLCRegistry::WriteRegistryString(char *path, char *valueName, char *value) {
HKEY keyHandle;
if( RegCreateKeyEx(m_RootKey, path, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &keyHandle, NULL) == ERROR_SUCCESS) {
RegSetValueEx(keyHandle,valueName,0,REG_SZ,(LPBYTE)value,(DWORD)(strlen(value)+1));
RegCloseKey(keyHandle);
}
}
void QVLCRegistry::WriteRegistryDouble(char *path, char *valueName, double value) {
HKEY keyHandle;
if( RegCreateKeyEx(m_RootKey, path, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &keyHandle, NULL) == ERROR_SUCCESS) {
RegSetValueEx(keyHandle,valueName,0,REG_BINARY,(LPBYTE)&value,sizeof(double));
RegCloseKey(keyHandle);
}
}
int QVLCRegistry::ReadRegistryInt(char *path, char *valueName, int default_value) {
HKEY keyHandle;
int tempValue;
DWORD size1;
DWORD valueType;
if( RegOpenKeyEx(m_RootKey, path, 0, KEY_READ, &keyHandle) == ERROR_SUCCESS) {
if(RegQueryValueEx( keyHandle, valueName, NULL, &valueType, NULL, &size1) == ERROR_SUCCESS) {
if(valueType == REG_DWORD) {
if(RegQueryValueEx( keyHandle, valueName, NULL, &valueType, (LPBYTE)&tempValue, &size1) == ERROR_SUCCESS) {
default_value = tempValue;
};
}
}
RegCloseKey(keyHandle);
}
return default_value;
}
char * QVLCRegistry::ReadRegistryString(char *path, char *valueName, char *default_value) {
HKEY keyHandle;
char *tempValue = NULL;
DWORD size1;
DWORD valueType;
if( RegOpenKeyEx(m_RootKey, path, 0, KEY_READ, &keyHandle) == ERROR_SUCCESS) {
if(RegQueryValueEx( keyHandle, valueName, NULL, &valueType, NULL, &size1) == ERROR_SUCCESS) {
if(valueType == REG_SZ) {
// free
tempValue = (char *)malloc(size1+1); // +1 fr NullByte`?
if(RegQueryValueEx( keyHandle, valueName, NULL, &valueType, (LPBYTE)tempValue, &size1) == ERROR_SUCCESS) {
default_value = tempValue;
};
}
}
RegCloseKey(keyHandle);
}
if(tempValue == NULL) {
// wenn tempValue nicht aus registry gelesen wurde dafr sorgen das ein neuer String mit der Kopie von DefaultValue
// geliefert wird - das macht das Handling des Rckgabewertes der Funktion einfacher - immer schn mit free freigeben!
default_value = strdup(default_value);
}
return default_value;
}
double QVLCRegistry::ReadRegistryDouble(char *path, char *valueName, double default_value) {
HKEY keyHandle;
double tempValue;
DWORD size1;
DWORD valueType;
if( RegOpenKeyEx(m_RootKey, path, 0, KEY_READ, &keyHandle) == ERROR_SUCCESS) {
if(RegQueryValueEx( keyHandle, valueName, NULL, &valueType, NULL, &size1) == ERROR_SUCCESS) {
if((valueType == REG_BINARY) && (size1 == sizeof(double))) {
if(RegQueryValueEx( keyHandle, valueName, NULL, &valueType, (LPBYTE)&tempValue, &size1) == ERROR_SUCCESS) {
default_value = tempValue;
};
}
}
RegCloseKey(keyHandle);
}
return default_value;
}
// License GPLv2 or later
// Code from ATMO
#ifndef QVLC_REGISTRY_H
#define QVLC_REGISTRY_H
#include <windows.h>
class QVLCRegistry
{
private:
HKEY m_RootKey;
char m_pathBuffer[256];
public:
QVLCRegistry(HKEY rootKey);
~QVLCRegistry(void);
void WriteRegistryInt(char *path, char *valueName, int value);
void WriteRegistryString(char *path, char *valueName, char *value);
void WriteRegistryDouble(char *path, char *valueName, double value);
int ReadRegistryInt(char *path, char *valueName, int default_value);
char * ReadRegistryString(char *path, char *valueName, char *default_value);
double ReadRegistryDouble(char *path, char *valueName, double default_value);
int RegistryKeyExists(char *path);
int RegistryValueExists(char *path, char *valueName);
};
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment