The release...

Roland Krause rokrau at yahoo.com
Wed Oct 9 00:19:03 UTC 2002


Harry, I would leave the default GUI mode as tabbed MDI. 
Otherwise you will have half the world screaming about "what the hell"
this IDEA mode is and "why this gideon thing" looks and feels so
different from KDevelop. 

It's an issue of taste after all, nothing more, but I would really
leave the users with something familiar at least in the beginning. 

Roland



--- Harald Fernengel <harry at kdevelop.org> wrote:
> Hi,
> 
> On Tuesday 08 October 2002 18:39, Caleb Tennis wrote:
> > Harry told me that he was going to test Qt 3.0.3 compilation this
> evening,
> > and I think that we should wait to see if that works prior to a
> release.
> 
> Tested in on SuSE 8.0, KDE 3.0.2 and Qt 3.0.3 and compilation worked
> fine. I 
> noticed some things that are already fixed in KDE 3.1/Qt 3.1 but
> we'll have 
> to live with that. Otherwise no showstoppers.
> 
> Things that should be done before tagging:
> 
> * Building a new project fails because the documentation doesn't
> build. 
> Removing one line (see patch below) helps, but I don't know what else
> it will 
> break.
> 
> * Can we set the default UI mode to IDEAl? I think it is better
> tested than 
> the MDI modes. (patch attached).
> 
> If no one complains, I'll commit very soon :)
> 
> Best regards,
> Harry
> 
> Index: kde-index.docbook
> ===================================================================
> RCS file:
> /home/kde/kdevelop/parts/appwizard/common/kde-index.docbook,v
> retrieving revision 1.4
> diff -u -3 -p -r1.4 kde-index.docbook
> --- kde-index.docbook   2001/07/01 18:46:44     1.4
> +++ kde-index.docbook   2002/10/08 18:54:32
> @@ -90,7 +90,6 @@
>      </qandaset>
> 
>    </chapter>
> -  <![ %addindex; [ &docindex; ]]>
>  </book>
>  <!--
>  Local Variables:> Index: parts/uimode/uichooser_widget.cpp
> ===================================================================
> RCS file: /home/kde/kdevelop/parts/uimode/uichooser_widget.cpp,v
> retrieving revision 1.2
> diff -u -3 -p -r1.2 uichooser_widget.cpp
> --- parts/uimode/uichooser_widget.cpp	2002/04/18 13:16:18	1.2
> +++ parts/uimode/uichooser_widget.cpp	2002/10/08 19:02:05
> @@ -19,7 +19,7 @@ void UIChooserWidget::load()
>    KConfig *config = kapp->config();
>    config->setGroup("UI");
>  
> -  if (config->readEntry("MajorUIMode", "mdi") == "sdi")
> +  if (config->readEntry("MajorUIMode", "sdi") == "sdi")
>    {
>      modeIDEA->setChecked(true);
>      return;
> Index: src/gideonrc
> ===================================================================
> RCS file: /home/kde/kdevelop/src/gideonrc,v
> retrieving revision 1.5
> diff -u -3 -p -r1.5 gideonrc
> --- src/gideonrc	2002/05/05 15:21:28	1.5
> +++ src/gideonrc	2002/10/08 19:02:05
> @@ -59,4 +59,4 @@ KDevScripting=false
>  
>  [UI]
>  MDI mode=1
> -MajorUIMode=mdi
> +MajorUIMode=sdi
> Index: src/partcontroller.cpp
> ===================================================================
> RCS file: /home/kde/kdevelop/src/partcontroller.cpp,v
> retrieving revision 1.47
> diff -u -3 -p -r1.47 partcontroller.cpp
> --- src/partcontroller.cpp	2002/09/22 23:53:15	1.47
> +++ src/partcontroller.cpp	2002/10/08 19:02:05
> @@ -155,7 +155,7 @@ void PartController::editDocument(const 
>    {
>      KParts::ReadOnlyPart *part =
>
static_cast<KParts::ReadOnlyPart*>(factory->createPart(TopLevel::getInstance()->main(),
> 0, 0, 0, className));
>      KParts::BrowserExtension *extension =
> KParts::BrowserExtension::childObject(part);
> -    kdDebug() << "Encoding: " << encoding << ", extension: " <<
> extension << endl;
> +    kdDebug(9000) << "Encoding: " << encoding << ", extension: " <<
> extension << endl;
>      if (extension && !encoding.isNull())
>      {
>        KParts::URLArgs args;
> @@ -209,7 +209,6 @@ DocumentationPart *PartController::findD
>  
>  KParts::Factory *PartController::findPartFactory(const QString
> &mimeType, const QString &partType, const QString &preferredName)
>  {
> -  kdDebug(9000) << "Preferred Name: " << preferredName << endl;
>    KTrader::OfferList offers = KTrader::self()->query(mimeType,
> QString("'%1' in ServiceTypes").arg(partType));
>  
>    if (offers.count() > 0)
> @@ -219,7 +218,6 @@ KParts::Factory *PartController::findPar
>      if ( !preferredName.isEmpty() ) {
>        KTrader::OfferList::Iterator it;
>        for (it = offers.begin(); it != offers.end(); ++it) {
> -        kdDebug(9000) << "Offer: " << (*it)->name() << endl;
>          if ((*it)->name() == preferredName) {
>            ptr = (*it);
>          }
> Index: src/toplevel.cpp
> ===================================================================
> RCS file: /home/kde/kdevelop/src/toplevel.cpp,v
> retrieving revision 1.21
> diff -u -3 -p -r1.21 toplevel.cpp
> --- src/toplevel.cpp	2002/08/27 01:14:16	1.21
> +++ src/toplevel.cpp	2002/10/08 19:02:05
> @@ -25,7 +25,7 @@ KDevTopLevel *TopLevel::getInstance()
>      KConfig *config = kapp->config();
>      config->setGroup("UI");
>  
> -    if (config->readEntry("MajorUIMode", "mdi") == "mdi")
> +    if (config->readEntry("MajorUIMode", "sdi") == "mdi")
>      {
>        TopLevelMDI *mdi = new TopLevelMDI;
>        s_instance = mdi;
> 

__________________________________________________
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos & More
http://faith.yahoo.com




More information about the KDevelop-devel mailing list