Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (94 - 96 of 301)

Ticket Resolution Summary Owner Reporter
#118 fixed showFullScreen() of a frame window KO Myung-Hun
Description

Hi/2.

when using showFullScreen() with a frame window, a title bar and a border still exist.

For examples, when switching to full screen in SMPlayer 0.6.8, those control does not disappear.

I think this behavior is 'maximizing' not 'switching to full screen'.

#124 wontfix QSynth makes CPU load 99.9% KO Myung-Hun
Description

Hi/2.

I've ported QSynth, which is a front-end of fluidsynth.

BTW when I launching QSynth, CPU load is 99.9% all the time even though I don't do anything.

What should I provide you with to analyze this problem ?

#149 wontfix VLC blocked when opening a non-existent file and quitting KO Myung-Hun
Description

Hi/2.

As subject, VLC is blocked if failing to open a file.

The blocked codes are signaling parts.

    QVLCApp::triggerQuit();

and

The QVLCApp class is

class QVLCApp : public QApplication
{
    Q_OBJECT

public:
    QVLCApp( int & argc, char ** argv ) : QApplication( argc, argv, true )
    {
        connect( this, SIGNAL(quitSignal()), this, SLOT(quit()) );
    }

    static void triggerQuit()
    {
         QVLCApp *app = qobject_cast<QVLCApp*>( instance() );
         if ( app )
             emit app->quitSignal();
    }

#if defined (Q_WS_X11)
     QVLCApp( Display *dp, int & argc, char ** argv )
         : QApplication( dp, argc, argv )
     {
        connect( this, SIGNAL(quitSignal()), this, SLOT(quit()) );
     }
#endif

#if defined(Q_WS_WIN)
protected:
    virtual bool winEventFilter( MSG *msg, long *result )
    {
        switch( msg->message )
        {
            case 0x0319: /* WM_APPCOMMAND 0x0319 */
                DefWindowProc( msg->hwnd, msg->message,
                               msg->wParam, msg->lParam );
                break;
        }
        return false;
    }
#endif


signals:
    void quitSignal();

};
Note: See TracQuery for help on using queries.