sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [code] Win32 Moving/Showing/Hiding Toolbars and Dialogs

    Scheduled Pinned Locked Moved Developers' Forum
    91 Posts 8 Posters 15.9k Views 8 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Dan RathbunD Offline
      Dan Rathbun
      last edited by

      @dan rathbun said:

      When a WebDialog has the focus... does this JS in the dialog:
      %(#8000BF)[window.opener.focus()]
      cause the Sketchup window to receive the focus ...

      (1) on PC/IE 7 : We get an error popup that states:

      "window.opener is null or not an object."

      So apparently if the owner is not a browser window (ie: an application,) the function returns null.

      Bummer.

      I'm not here much anymore.

      1 Reply Last reply Reply Quote 0
      • thomthomT Offline
        thomthom
        last edited by

        @dan rathbun said:

        How the Paint.NET programmer enabled Mouse ClickThrough for Paint.NET's various ToolWindows.
        http://blogs.msdn.com/b/rickbrew/archive/2006/01/09/511003.aspx

        Fortunately webdialogs under windows are click-through. But OSX remains a problem. I'm not happy with having the user remembering to press Ctrl every time they want to interact with the window.

        Thomas Thomassen — SketchUp Monkey & Coding addict
        List of my plugins and link to the CookieWare fund

        1 Reply Last reply Reply Quote 0
        • Dan RathbunD Offline
          Dan Rathbun
          last edited by

          @John (driven) & ThomThom

          Try the events in the code below for Safari toolbar WebDialogs.

          • if the ctrlKey event doesn't work for Safari, perhaps try setting the altKey event to true onMouseIn and false onMouseOut.

          You may need a onMouseOver="window.focus();" attribute within the body tag, in order for document.activeElement (see body tag's onClick event,) to return the control that is set active by each control's onmouseover event. If you DO, then you'll definately need the window.blur() statement within the body tag's onMouseOut event (otherwise you may not.)

          <html>
          
          <body onMouseIn="window.event.ctrlKey=true";
           onMouseOut="window.event.ctrlKey=false; window.blur();"
           onClick="document.activeElement.click();">
          
          <img class="imgbutton" onmouseover="this.setActive" src="SketchupIcon.png"
           onClick="callSomeJsFunctionToRubyCallback('params');">
          
          ... the rest of your webpage ...
          
          

          The idea step by step:

          1. Sketchup Application Window has focus
          2. mouse moves into toolbar webdialog setting window.event.ctrlKey=true (and possibly dialog focus via body onMouseOver.
          3. as the mouse moves over controls, each control has a onmouseover="this.setActive" event.
          4. when a click occurs anywhere on the page, the body tag's onClick event uses document.activeElement.click to cause active control's onClick event to fire.
          5. when the mouse moves out of the toolbar dialog, the body tag's onMouseOut event resets the key event to false, and optionally calls window.blur

          The <IMG> tags are given a class "imgbutton" so they can have styles set for borderstyle, etc.

          ~

          I'm not here much anymore.

          1 Reply Last reply Reply Quote 0
          • thomthomT Offline
            thomthom
            last edited by

            @dan rathbun said:

            1. mouse moves into toolbar webdialog setting window.event.ctrlKey=true (and possibly dialog focus via body onMouseOver.

            Will the mouse event trigger when the webdialog haven't got focus?

            Thomas Thomassen — SketchUp Monkey & Coding addict
            List of my plugins and link to the CookieWare fund

            1 Reply Last reply Reply Quote 0
            • thomthomT Offline
              thomthom
              last edited by

              @jim said:

              <body onMouseOut ="window.blur()">
              On Windows, it sends the main SU window and everything else to the back.

              How odd...

              Thomas Thomassen — SketchUp Monkey & Coding addict
              List of my plugins and link to the CookieWare fund

              1 Reply Last reply Reply Quote 0
              • Dan RathbunD Offline
                Dan Rathbun
                last edited by

                @thomthom said:

                @dan rathbun said:

                1. mouse moves into toolbar webdialog setting window.event.ctrlKey=true (and possibly dialog focus via body onMouseOver.

                Will the mouse event trigger when the webdialog haven't got focus?

                it DOES on Win32 w/ IE 7

                I'm not here much anymore.

                1 Reply Last reply Reply Quote 0
                • D Offline
                  driven
                  last edited by

                  hi Dan, Thom, Jim, all

                  I've been trying all sorts of things to 'avoid' giving the WebDialog 'focus' while still having it send actions.
                  this is what happens with SU native NSPanels (used for SU toolbars) and also for some of the NSWindows used for different preferences and the NS(WebView)Window used by Instructor, but not the NS(WebView)Window used by WebDialog.

                  holding down the "cmd"(apple) key, invokes this behavior (no focus, but active) on any window/panel inside

                  so far the best/simplest way I've come up with is add to an 'aid memoir', using background colours and text..... but I'll keep trying

                  john
                  for now??

                  learn from the mistakes of others, you may not live long enough to make them all yourself...

                  1 Reply Last reply Reply Quote 0
                  • Dan RathbunD Offline
                    Dan Rathbun
                    last edited by

                    @thomthom said:

                    @jim said:

                    <body onMouseOut ="window.blur()">
                    On Windows, it sends the main SU window and everything else to the back.

                    How odd...

                    yea I tried with a modified test dialog John sent me (I added buttons and some key displays.)

                    SelectionInfo.zip

                    I'm not here much anymore.

                    1 Reply Last reply Reply Quote 0
                    • Dan RathbunD Offline
                      Dan Rathbun
                      last edited by

                      Hey John ... you talk about NS windows made me think of the 9th arg to WebDialog.new
                      :mac_only_use_nswindow

                      You might need to use a settings Hash to use it. If you do, the key for the 3rd arg is :preferences_key not 'key'

                      You should also use Symbol keys not String keys, as the Hash argument is cranky.

                      I'm not here much anymore.

                      1 Reply Last reply Reply Quote 0
                      • thomthomT Offline
                        thomthom
                        last edited by

                        @dan rathbun said:

                        it DOES on Win32 w/ IE 7

                        Yea but windows doesn't have the click-through issue. I was thinking since click events would not register under OSX until the window had gotten focus, then maybe mouse events would not trigger either.

                        ...I really need to find that box with my Mac... ...ugh, the hurdles of moving...

                        Thomas Thomassen — SketchUp Monkey & Coding addict
                        List of my plugins and link to the CookieWare fund

                        1 Reply Last reply Reply Quote 0
                        • D Offline
                          driven
                          last edited by

                          an update,

                          holding the cmb key down is great for tool swaps and input button clicks, but locking it down means you can't use numerical input boxes...

                          I didn't realise that cmd 1,2,3,4,5,6,7,8,9,0 are all shortcut keys, so holding down the key manually is the best option....

                          john

                          learn from the mistakes of others, you may not live long enough to make them all yourself...

                          1 Reply Last reply Reply Quote 0
                          • Dan RathbunD Offline
                            Dan Rathbun
                            last edited by

                            @thomthom said:

                            I've been searching for ways to manipulate windows under OSX like one can do under Windows with the Win32 API - but I never find anything. 😞

                            RubyCocoa
                            it's included with OSX since v10.5 “Leopard” ??

                            EDIT: Here's the RubyCocoa SourceForge page.

                            I've seen Ruby scripts that had: require 'Cocoa' or similar at the top.

                            There is a potential pitfall looming for Sketchup cross-platform scripting, in that Apple intends to replace MRI Ruby, with MacRuby. It would not be bad if we had all the same UI classes in a "WinRuby" that MacRuby has.

                            I'm not here much anymore.

                            1 Reply Last reply Reply Quote 0
                            • thomthomT Offline
                              thomthom
                              last edited by

                              Ok - something to look into. I hope that allows you to modify existing windows, not sure create your own. (Though creating your own would be cool too.)

                              Thomas Thomassen — SketchUp Monkey & Coding addict
                              List of my plugins and link to the CookieWare fund

                              1 Reply Last reply Reply Quote 0
                              • thomthomT Offline
                                thomthom
                                last edited by

                                @dan rathbun said:

                                There is a potential pitfall looming for Sketchup cross-platform scripting, in that Apple intends to replace MRI Ruby, with MacRuby. It would not be bad if we had all the same UI classes in a "WinRuby" that MacRuby has.

                                mhm - some wrapper to bridge it all.

                                Thomas Thomassen — SketchUp Monkey & Coding addict
                                List of my plugins and link to the CookieWare fund

                                1 Reply Last reply Reply Quote 0
                                • Dan RathbunD Offline
                                  Dan Rathbun
                                  last edited by

                                  @thomthom said:

                                  @dan rathbun said:

                                  There is a potential pitfall looming for Sketchup cross-platform scripting, in that Apple intends to replace MRI Ruby, with MacRuby. It would not be bad if we had all the same UI classes in a "WinRuby" that MacRuby has.

                                  mhm - some wrapper to bridge it all.

                                  Yes the 'wrappings' would need to follow (as closely as possible,) those defined in HotCocoa for MacRuby.

                                  Note that in the example on the HotCocoa introduction page, they are showing the use of a window() constructor method. What they don't actually show is that farther up at the beginning of the Ruby module block, is that there must be an include HotCocoa (or some other mixin module,) that brings that window() method into the current namespace. I usually don't like to do this, instead prefering to call the method using fullnamespace qualification. Less chance then of an accidental override of methods that are imported into your namespace. In this example, I would probably wish to have a window() method in my namespace that returns the instance handle to the window object (@win,) so I'd think most times it's not really that convenient to include entire complex libraries, into a custom namespace.

                                  I'm not here much anymore.

                                  1 Reply Last reply Reply Quote 0
                                  • P Offline
                                    pcarret
                                    last edited by

                                    Everything is fine under MS-Windows, but :

                                    Is it possible to do hide minimize, maximize andclose buttonon Mac OS ?

                                    I found NSMiniaturizableWindowMaskbut I don't know how to access system API under Mac OS

                                    Remark under windows : WS_MINIMIZEBOX and WS_MAXIMIZEBOX can't work separately

                                    simplified working code is (must have hwnd handle, constant and win32 method declaration) :

                                    style = GetWindowLong.call(hwnd, GWL_STYLE)
                                    style = style & ~WS_MINIMIZEBOX
                                    style = style & ~WS_MAXIMIZEBOX
                                    result = SetWindowLong.call(hwnd, GWL_STYLE,  style)
                                    

                                    Thanks for any answer.

                                    Philippe

                                    1 Reply Last reply Reply Quote 0
                                    • D Offline
                                      driven
                                      last edited by

                                      @pcarret said:

                                      ...Is it possible to do hide minimize, maximize andclose buttonon Mac OS ?

                                      possibly, but not easily.

                                      I'm not entirely sure what your wanting to achieve...

                                      What exactly do you want to minimise/maximise?

                                      is it purely for yourself or do you want to use it in a Plugin?

                                      Some things can be done from Rudy, others by using AppleScript or by modifying the nib files...

                                      Outline what you want to do and I'll try and help...

                                      john

                                      learn from the mistakes of others, you may not live long enough to make them all yourself...

                                      1 Reply Last reply Reply Quote 0
                                      • 1
                                      • 2
                                      • 3
                                      • 4
                                      • 5
                                      • 5 / 5
                                      • First post
                                        Last post
                                      Buy SketchPlus
                                      Buy SUbD
                                      Buy WrapR
                                      Buy eBook
                                      Buy Modelur
                                      Buy Vertex Tools
                                      Buy SketchCuisine
                                      Buy FormFonts

                                      Advertisement