当前位置: 首页>>代码示例>>C++>>正文


C++ PropertiesFile::setValue方法代码示例

本文整理汇总了C++中PropertiesFile::setValue方法的典型用法代码示例。如果您正苦于以下问题:C++ PropertiesFile::setValue方法的具体用法?C++ PropertiesFile::setValue怎么用?C++ PropertiesFile::setValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PropertiesFile的用法示例。


在下文中一共展示了PropertiesFile::setValue方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: setFunction

//==============================================================================
void MidiSlider::setFunction(const String &_functionName, const int &_functionArg, const int &_midiChannel, const int &initialValue)
{
    functionName = _functionName;
    functionArg = _functionArg;
    midiChannel = _midiChannel;

    slider->snapsBackOnRelease = 0;
    if( functionName.containsWholeWord(T("CC")) ) {
        String labelStr(functionArg);
        sliderFunction->clear(true);
        for(int i=0; i<128; ++i) {
            sliderFunction->addItem(T("CC") + String(i) + T(": ") + String(MidiSliderCcNames[i]), i+1);
        }
        sliderFunction->setSelectedId(functionArg+1, true);
    } else if( functionName.containsWholeWord(T("PB")) ) {
        String labelStr(functionArg);
        slider->snapsBackOnRelease = 1;
        sliderFunction->clear();
    } else {
        sliderFunction->clear();
    }

    slider->setValue(initialValue, dontSendNotification); // don't send update message

    // store settings
    PropertiesFile *propertiesFile = MiosStudioProperties::getInstance()->getCommonSettings(true);
    if( propertiesFile ) {
        propertiesFile->setValue("slider" + String(sliderNum) + "FunctionName",_functionName);
        propertiesFile->setValue("slider" + String(sliderNum) + "FunctionArg", functionArg);
        propertiesFile->setValue("slider" + String(sliderNum) + "MidiChannel", midiChannel);
        propertiesFile->setValue("slider" + String(sliderNum) + "InitialValue", slider->getValue());
    }
}
开发者ID:JKcompute,项目名称:395_midi_controller,代码行数:34,代码来源:MidiSlider.cpp

示例2: changeListenerCallback

 void changeListenerCallback(void *something){
   printf("Some audio change thing.\n");
   if(audioDeviceManager.getCurrentAudioDevice()!=NULL){
     samplerate=audioDeviceManager.getCurrentAudioDevice()->getCurrentSampleRate();
     propertiesfile->setValue("audiodevicemanager",audioDeviceManager.createStateXml());
   }else{
     fprintf(stderr,"Gakkegakke\n");
   }
 }
开发者ID:,项目名称:,代码行数:9,代码来源:

示例3: f

    GuiApp::~GuiApp()
    {       
        PropertiesFile* pf = globals().settings().getUserSettings();
        pf->setValue ("mainWindowState", mainWindow->getWindowStateAsString());

        File f (sessionDoc->getFile());
        if (f.existsAsFile()) {
            pf->setValue ("lastSession", f.getFullPathName());
        }

        render.detach();

        mainWindow->setVisible (false);
        mainWindow->removeFromDesktop();

        mainWindow = nullptr;
        windowManager = nullptr;
        LookAndFeel::setDefaultLookAndFeel (nullptr);
    }
开发者ID:bketech,项目名称:element,代码行数:19,代码来源:GuiApp.cpp

示例4: saveSettingsToFile

void ApplicationSettingsComponent::saveSettingsToFile(){
  PropertiesFile* properties = ApplicationConfiguration::getApplicationProperties();
  properties->setValue("serialport", serialPortComboBox->getText());
  properties->setValue("serialspeed", serialSpeedComboBox->getText());
  properties->setValue("presetdirectory", presetDirectoryEditor->getText());
  properties->setValue("midiinput", midiInputComboBox->getText());
  properties->setValue("midioutput", midiOutputComboBox->getText());
  properties->setValue("oschost", oscHostEditor->getText());
  properties->setValue("oscport", oscPortEditor->getText());
  properties->saveIfNeeded();
  std::cout << "saved settings to file " << properties->getFile().getFullPathName() << std::endl;
}
开发者ID:,项目名称:,代码行数:12,代码来源:

示例5: setLastSearchPath

void PluginListComponent::setLastSearchPath (PropertiesFile& properties, AudioPluginFormat& format,
                                             const FileSearchPath& newPath)
{
    properties.setValue ("lastPluginScanPath_" + format.getName(), newPath.toString());
}
开发者ID:COx2,项目名称:PizzaKnobFilter,代码行数:5,代码来源:juce_PluginListComponent.cpp


注:本文中的PropertiesFile::setValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。