+// FIXME : VOD are not exported to the file
+bool VLMDialog::exportVLMConf()
+{
+ QString saveVLMConfFileName = QFileDialog::getSaveFileName(
+ this, qtr( "Choose a filename to save the VLM configuration..." ),
+ qfu( p_intf->p_libvlc->psz_homedir ),
+ qtr( "VLM conf (*.vlm) ;; All (*.*)" ) );
+
+ if( !saveVLMConfFileName.isEmpty() )
+ {
+ vlm_message_t *message;
+ QString command = "save \"" + saveVLMConfFileName + "\"";
+ vlm_ExecuteCommand( p_vlm , qtu( command ) , &message );
+ vlm_MessageDelete( message );
+ return true;
+ }
+ return false;
+}
+
+// TODO : import configuration file
+bool VLMDialog::importVLMConf()
+{
+}
+