Bug 50234 - "Auto hide" messages option
Summary: "Auto hide" messages option
Status: RESOLVED WORKSFORME
Alias: None
Product: kdevelop
Classification: Applications
Component: kdevelop 2.x (obsolete) (show other bugs)
Version: 3.0.0a3
Platform: openSUSE Linux
: NOR wishlist
Target Milestone: ---
Assignee: KDevelop-Devel List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-11-05 15:17 UTC by Alexandros Karypidis
Modified: 2003-07-13 15:26 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alexandros Karypidis 2002-11-05 15:17:50 UTC
Version:           3.0 (using KDE KDE 3.0.8)
Installed from:    SuSE RPMs
Compiler:          N/A N/A
OS:          LinuxLinux

It would be nice to have an option which automatically hides the compilation-messages window after "make" completes, especially when the compilation is successful.

Usually, I hit F8 to run make, then test my program and (when I get back to kdevelop) I hide the messages window at the bottom of the screen so that the editor obtains the largest portion of the window.

I believe one is only interested in haveing the messages view left open, when some error causes the compilation to fail.
Comment 1 Amilcar do Carmo Lucas 2003-03-28 11:46:28 UTC
I agree to this and I think it could be even cleverer. 
 
Let me put it in a way that everybody understands: 
 
if (Before compile command: bottom view where visible) { 
   if (messages active) 
      compile 
   else { 
      store current active view (problems or debugger or valgrid .....) 
      activate messages view 
      compile 
      If (no compilation errors) 
        restore the previous active view 
    } 
} 
else { 
   make bottom view where visible 
   activate messages view 
   compile 
   If (no compilation errors) 
      hide bottom view 
} 
 
How do you like it???? 
Amilcar Lucas 
Comment 2 Alexandros Karypidis 2003-03-28 13:37:33 UTC
Subject: Re:  "Auto hide" messages option

It seems like the "ideal" behavior. Well, for me at least... :-P

On Friday 28 March 2003 12:46, you wrote:
> ------- You are receiving this mail because: -------
> You reported the bug, or are watching the reporter.
>
> http://bugs.kde.org/show_bug.cgi?id=50234
>
>
>
>
> ------- Additional Comments From a.lucas@tu-bs.de  2003-03-28 11:46 -------
> I agree to this and I think it could be even cleverer.
>
> Let me put it in a way that everybody understands:
>
> if (Before compile command: bottom view where visible) {
>    if (messages active)
>       compile
>    else {
>       store current active view (problems or debugger or valgrid .....)
>       activate messages view
>       compile
>       If (no compilation errors)
>         restore the previous active view
>     }
> }
> else {
>    make bottom view where visible
>    activate messages view
>    compile
>    If (no compilation errors)
>       hide bottom view
> }
>
> How do you like it????
> Amilcar Lucas

Comment 3 Amilcar do Carmo Lucas 2003-03-29 01:12:19 UTC
Implemented in CVS. Please close whish. 
Comment 4 Alexandros Karypidis 2003-03-29 11:02:42 UTC
Thanks! 
 
Always getting better...