Native screen on QT - listening guidance

I'm fighting for a change in direction playbook when a native screen is projected on top of a QMainWindow, resize() is called only when the native screen is not indicated.

I tried to add NAVIGATOR_ORIENTATION cases to handle_navigator_event, but it is never called.

Anyone has any experience of this?

Thank you

Sure. http://Qt-project.org/wiki/BPS_Events_and_Qt

Tags: BlackBerry Developers

Similar Questions

  • Black screen after on native screen only hp logo, but the external monitor is ok

    Hello everyone. HP Pavilion dv9700.

    The graphics card has been burned, and I ordered the new motherboard of eBay and replaced it.

    The problem is:

    When I turn on the unit, the native screen flashes once the HP logo then it becomes black. If I unplug the video cable and connect the external monitor, it works perfectly. The same thing with remote access. I start with a blank screen, and I can connect remotely to the laptop.

    What did I miss? where to look for potential problems?

    the problem has a link between motherboars and display.  I could see the screen by moving the display cable. Maybe it's because the poor quality of the motherboard, I bought

  • Re: Tecra M5 - cannot use the native screen resolution of my external monito

    Hi, I have a Tecra M5 and just bought a BenQ G2220HD monitor. However, I can't display the native resolution of 1920 x 1080. I guess it's a problem with my video card.

    If so, can anyone please suggest what video card, I need to buy?

    Thank you

    Scott

    Hello!

    I checked the manual of your laptop (it can be downloaded from the Toshiba site) and it seems that the resolution 1920 x 1080 is not taken in charge.
    Here is the list of manual of the supported screen resolutions:
    640 x 480
    800 x 600
    1024 x 768
    1280 x 1024
    1600 x 1200
    1920 x 1440
    2048 x 1536

    I think that should answer your question ;)

    And as Akuma says the graphics card can t be exchanged because it s soldered onto the motherboard. In the area of the FAQ in the forum, I founded this interesting article:
    http://forums.computers.Toshiba-Europe.com/forums/Ann.jspa?annID=13

    Good bye

  • Challenge: What is the background native screen size?

    I try the very simple thing to add a new wallpaper. Anyway, screen resolution is 480 x 864, that is, native size wallpaper is 960 x 864. However if I try to use a file *.jpg with these dimensions, the DEFY trying to crop down to something that looks like 640 x 640. Is it the fact that I am using a *.jpg file, or the native background screen display resolution is another?

    960 x 854 is the native resolution, but when you set the image you must drag the crop box to capture the entire image. It will not be displayed on the screen completely, because there is room on the left and right of the image.

  • Resolution of the different native screen after replacing the LCD screen

    I recently had my HP Pavilion DV7 laptop screen replaced after getting a crack in it. He was sent to HP for repair and she came back yesterday with a new brand, screen exactly like my old. While the screen looks the same as the old, when I started, it is a completely different resolution. On the old screen that broke the (maximum) native resolution was 1600 x 900. However, on the new, the (maximum) native resolution is 1920 x 1080. I'm still able to go back to 1600 x 900, but when I do the text becomes blurry. I suppose I could use the 1920 x 1080, but it would take a lot of time to get used to it, especially since I am using 1600 x 900 for two years. So my question is, why is there another native resolution and is it possible to fix the blur with 1600 x 900? I don't understand why all this is happening, because the screen looks exactly like my old, same size and all. I don't know of changes to software that took place or the other, all what has been messed with to my knowledge was the physical display.

    Thank you!

    Hello:

    From the sound of it, HP has replaced your original screen with better resolution by mistake.

    There is nothing you can do except to report it to the support of HP and ask to the screen to be replaced by one of the same characteristics as yours, or you will have to get used to the larger screen real estate and more small text and objects, or use a different resolution which may be more attractive to you.

  • Satellite Pro U400 - How can I get the native screen resolution for external monitor?

    I have a samsung syncmaster external screen connected to a Satellite Pro U400.

    The resolution of the screen goes up to 1280 etc. but the minimum samsung is 1440 x 920 (ish I forgot).
    How can I get the samsung to display full screen expanded to save my eyes of the realativively small screen internal?

    Hello!

    Have you tried to update the display on your laptop driver? Check the Toshiba site for an update:
    http://EU.computers.Toshiba-Europe.com-online decision-making supported Downloads & => Download drivers

    In addition, it would be interesting to know if you are running the factory settings or you have installed your own version of Windows?
    And what operating system are you using? Have you installed all Windows updates?

    For external LCD, monitors, you must set the screen refresh rate of 60 Hz.
    And if you want to change the resolution of the screen, you must select the second monitor in the graphics options on Windows.

    Good bye

  • Tecra M4 PTM40E - can't use native screen resolution

    The display settings can be defined more in the colors of 1400 x 1050 with 32-bit (but only with 16 - bit). The monitor is detected as "standard monitor" and the graphics card is presented as "Vgasave. Some applications do not work, and sometimes the background colors are corrupted.

    After installing the driver of the display - 20080318150127.zip that nothing changes. Even after BIOS update display hardware detection and / or driver functions do not work.

    No idea what could have changed their behaviour. In any case, I'd appreciate any help. Thank you.

    Hello

    Your graphics card properly recognized in Device Manager or with a yellow exclamation?

    Before you install a new display driver, you must remove the older version first. Restart the computer, use CCleaner and then install the latest version of the Toshiba page.

  • Windows phone call native screen, a button video Skype, but grayed out, why?

    During a normal GSM call, I have a greyed the button with a Skype video icon.

    For one of my contacts, this button become active and when you click it, wonder if I want to convert a video call.

    Why it is disabled for most of my other contacts, what is needed to get this working?

    Is this a bug in the OS Windows mobile?

    Solution found, you must link in contacts, the related Skype contact.

  • How to listen to a closed screen event

    Hi, do achieve the example that I gave to 2 screens, I would class to know when App screen1 is closed and act at this time, how can I do this?

    import net.rim.device.api.ui.UiApplication;
    
    public class App extends UiApplication{
    
        public static void main(String[] args)    {        App  app = new App();        app.enterEventDispatcher();    }    public App()    {        pushScreen(new Screen1());        pushScreen (new Screen2());    }}
    

    Screen1.Java:

    import net.rim.device.api.ui.component.LabelField;import net.rim.device.api.ui.container.MainScreen;
    
    final class Screen1 extends MainScreen{
    
        public Screen1()    {        super();         setTitle(new LabelField("Screen1"));    }    public boolean onClose()    {     setDirty(false);      return super.onClose();    }
    
    }
    

    Screen2.Java:

    import net.rim.device.api.ui.component.LabelField;import net.rim.device.api.ui.container.MainScreen;
    
    final class Screen2 extends MainScreen{
    
        public Screen2()    {        super();         setTitle(new LabelField("Screen2"));    }    public boolean onClose()    {        setDirty(false);      return super.onClose();    }}
    

    Declare an interface:

    public interface ScreenClosedListener {
    
       public void notifyScreenClosed(MainScreen screen);
    
    }
    

    Add features to the Screen1 class.

    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.MainScreen;
    
    final class Screen1 extends MainScreen {
    
        private ScreenClosedListener listener;
    
        public Screen1(ScreenClosedListener listener) {
            super();
            setTitle(new LabelField("Screen1"));
            this.listener = listener;
        }
    
        protected void onUndisplay() {       listener.notifyScreenClosed(this);    } 
    
        protected boolean onSavePrompt() {
          // if you want to always close the screen
          // without questions just return true
          // there is no need in setDirty(false)
          // in onClose() method
    
          return true;
        }
    }
    

    Add features to the App class, make the screen closed event listener

    import net.rim.device.api.ui.UiApplication;
    
    public class App extends UiApplication implements ScreenClosedListener {
           // compose Screen1 instance and pass to the constructor    // the reference to the App clas    // which is ScreenClosedListener implementation     private Screen1 screen1Instance = new Screen1(this); 
    
        public static void main(String[] args) {
            App  app = new App();
            app.enterEventDispatcher();
        }
    
        public App() {        pushScreen(screen1Instance);
            pushScreen (new Screen2());
        }
    
       public void notifyScreenClosed(MainScreen screen) {
    
             // check the event source object         if (screen==screen1Instance) {     // act accordingly here     }   }
    
    }
    

    }

  • Replace / extend native device screens

    Hi people!

    Is it possible to extend a native device screen? For example, messaging, newspapers and calling screens.

    According what I saw, it is not possible to do, but, who knows, maybe that someone has an idea about that.

    Another way to do would be to substitute these screens, but instead how a native screen by a filter custom?

    If it is possible to extend / replace any native screen, how you would do it?

    Best regards

    Isabelle

    No, it is not possible. You can re - implement them of course, but you can't replace them.

  • Re: Satellite Pro L300 - screen resolution maximum?

    I just bought an external monitor for my L300. The screen resolution is 1920 x 1080, but the maximum available on my L300 is 1280 x 800. The utility Service Station tells me that all my drivers are up to date - is there a way I can increase the graphics resolution? Any suggestions much appreciated!

    Details: Running Windows 7 Pro SP1 on a satellite Pro L300 PSLB9A - 02K 002

    Hi PeterSouthon,

    Need to unlock the other screen resolutions. Simply uncheck the option Hide modes that this monitor cannot display as you can see on [THIS | http://blog.wildvista.com/wp-content/uploads/2009/12/Lightroom_hide_modes-340x400.png] photo.

    After unchecking this box, you should be able to use the native screen resolution of your external display.

  • Qosmio F50 - 10 k: cannot read any games - black screen

    Hello

    So, I'm having with my laptop since the beginning.

    * Laptop is: *.
    Qosmio F50 - 10 k, 4 GB ram, geforce 9600 m gt 512 MB and I changed my windows vista ultimate to Windows XP Home edition sp3.

    First, I changed the windows because I thought it can help (Vista can overload my pc, but the change to xp not really helped except that it's faster now).

    * My problem is: *.
    Computer is under normal execution, I can check Web sites, watch movies, youtube or use office programs, but I can't play * ANY game.
    When I turn the game can

    + System: Recommended requirements.
    + CPU: Intel Pentium 4 2.4 GHz or equivalent +.
    RAM: 512 MB RAM +.
    + Graphics card: GeForce FX 5600 or equivalent +.
    + DirectX: 9.0 c +.

    My laptop turns * black screen *.
    I listen to the music of the game, and my radiators are starting work dramaticlly.
    It's like 10 seconds after I opened the game. I have to remove the battery and reset it.

    Temperature at which I am writing this post is 60 ° C, as always when I do _completly nothing_.

    Can I have your help guys? Thank you.

    Hello

    The Windows XP drivers are not available for the Qosmio F50.
    I found only the drivers for Vista 32-bit and 64-bit OS.

    Your problem could be related to the Win XP drivers that are not certified by Toshiba
    The point is that this drivers don t support an overheating protection as do Toshiba drivers
    So maybe this is the reason why the GPU temperature increases to 60 C.
    But to be honest, the 60 ° C is not too high and each party will create more heat dissipation when running certain games or applications high performance

  • Satellite L500 - after Windows 7 upgrade games does not work in mode full screen

    Hello..

    I just received my upgrade to windows 7 in the mail and I installed it and all is well...

    But if I run a game that is not in the same as the computer screen resulution is a square in the middle of the screen and it is two big black lines down on each side. It does not put the game in full screen. The games in the same resulution works very well.

    Some games may be put to the resulution have this computer.

    How can I do then come in full screen?

    Thank you

    Hello

    Have you tried to update the display driver? Maybe you have an older version that is not fully compatible with Windows 7. Just check the Web from Toshiba site to get the latest version:
    http://EU.computers.Toshiba-Europe.com > support & downloads > download drivers

    Normally for mode full screen in games you choose the native screen resolution of your screen there.
    Check this box!

    And it would be interesting to know in what games this problem exists

  • Satellite A500-132 - games does not work on the mode full screen (Windows 7 64-bit)

    everything works fine... videos, applications... everything is very good...
    also, I downloaded all the drivers and all work fine...
    but when I installed a game and wanted to play, he began not as a large screen, there was a void balck space left and right... but was runnung fine...
    How can I make it work on the entire screen?

    Note:-games allowing to operate normally oon windows vista...

    I downloaded the driver and installed several times: s

    driver: -.
    Mobility radion ATI HD 4600 series...

    can someone help me?
    THX

    Hello

    Which driver do you have exactly? You should try the new driver to display on the Toshiba site. The drivers from ATI directly not designed for mobile cards!

    Normally, every game, you can change the screen resolution. There you can adjust it to the native screen resolution.
    Check this box!

  • Satellite L500-1WP - higher screen resolution than HD?

    Nice day!

    I use Toshiba Satellite L500-1WP. I bought a new monitor Dell U2711 with max resolution 2560 x 1440. I tried to connect this monitor to my computer using a HDMI cable, the video card identifies the monitor as a HDTV and made max resolution 1920 x 1080 possible.

    Is it possible to do these 2 works as well as the resolution, I need (2560 x 1440), or I have to buy a new computer with DVI-d port?

    Hey Buddy,

    You should check the user manual here, I founded an information that the computer can display up to 2048 horizontal and 1536 vertical pixels at up to 16 million colors.

    So for me, it looks like you can use the native screen resolution of your external display t but normally 1080 p should be pretty good. :)

Maybe you are looking for