<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Arial'; font-size:11pt; font-weight:400; font-style:normal;">I re-implementing in my applet the configAccepted() to store the settings...<br>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p>The thing is that I came across a strange issue.<br>
I run the applet if I invoke the config interface, and press ok... configAccepted is called once. Then I close the applet , and configAccepted is called once more. All the options are saved fine.<br>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p>If I run the applet and don't invoke the config interface, and the close the applet. configAccepted() is called only on applet close, and all the settings are reset, and are not saved with the current settings.<br>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p>Any help?<br>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p><p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p>Here is the code:<br>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p>void PlasmaTvGr::configAccepted()<br>
{<br>
  kDebug()&lt;&lt;"run";<br>
  if(m_dialog)<br>
  {<br>
  switch(ui.loopBox-&gt;currentIndex()){<br>
  case 0:<br>
    m_loop=0;break;<br>
  case 1:<br>
    m_loop=15;break;<br>
  case 2:<br>
    m_loop=30;break;<br>
  case 3:<br>
    m_loop=60;break;<br>
  case 4:<br>
    m_loop=600;break;<br>
  case 5:<br>
    m_loop=1800;break;<br>
  default:<br>
    m_loop=0;<br>
  };<br>
  m_fontSize=ui.fontBox-&gt;currentText().toInt();<br>
  };<br>
  m_chanList="";<br>
  QListWidgetItem* item;<br>
  int w1,w2;<br>
  int shownOne=0;<br>
  for(w1=0;w1&lt;ui.list1-&gt;count();w1++)<br>
  {<br>
    item=ui.list1-&gt;item(w1);<br>
    w2=item-&gt;isSelected();<br>
    if(w2==1) shownOne=1;<br>
    m_chanList.append(QString::number(w2)+",");<br>
  };<br>
  m_chanList.chop(1);<br>
  if(shownOne==0) m_chanList[0]='1';<br>
  KConfigGroup cg = config();<br>
  cg.writeEntry("LoopSeconds", m_loop);<br>
  cg.writeEntry("SelectedChannel", m_channelID);<br>
  cg.writeEntry("FontSize",m_fontSize);<br>
  cg.writeEntry("ChannelList",m_chanList);<br>
  m_channel=chan[m_channelID];<br>
  if(m_loop!=0) m_loopTimer-&gt;start(m_loop*1000); else m_loopTimer-&gt;stop();<br>
  calculateSizes();<br>
  //updateGeometry();<br>
  m_pixmapUpdate=1;<br>
  update();<br>
  emit configNeedsSaving();<br>
};<br>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"><br></p></body></html>