Using qtcurve with qt5 applications

smplayer recently moved to qt5, and because I don't use a DE (just plain openbox instead), it doesn't pick up my qtcurve gui style.
I thought I'd be able to fix this pretty easily by using QT_STYLE_OVERRIDE - but disappointingly, it doesn't work (I just get the default Fusion style). I also tried using -style=qtcurve, but get the same results. However, when I try a different gui style, such as gtk, it does work as expected.
There is a workaround of setting KDE_FULL_SESSION=1 and KDE_SESSION_VERSION=4, and then setting the gui style in the kdeglobals config. But I'd much rather use QT_STYLE_OVERRIDE.
Has anyone managed to get this working properly - or should I just go ahead and report a bug upstream?
Last edited by kachelaqa (2014-04-21 16:58:48)

berbae wrote:@rabid_works : Yes but how do you select the qtcurve-qt5 theme? Do you use the QT_STYLE_OVERRIDE variable or the -style parameter?
I don't think that only installing the package will automatically make it used by qt5 applis. So can you explain please?
Yes, this is the issue. There are two methods for loading the style plugin. With the first one, Qt5 will detect the DE in use, and if it finds one it knows about, it will query the DE's own settings to find out which style plugin to use. The second method checks the -style option or the QT_STYLE_OVERRIDE variable and, if present, loads the plugin directly from that.
I guess that most people who use qtcurve are also using one of the supported DEs: KDE, Gnome, Unity, LXDE, Xfce and MATE. They will not normally see a problem, because the style plugin is loaded using the first method. I'm not using one of those DEs, but I can it fake it by setting something like KDE_FULL_SESSION/KDE_SESSION_VERSION. This is an ugly hack, though, because it can affect much more than just the gui style.
Qt5 introduced the QT_STYLE_OVERRIDE variable to help people who don't use one of the supported DEs. But for me at least, it's currently not working with the qtcurve plugin.

Similar Messages

  • Can i use Airplay with other applications different to iTunes on my Mac Pro?

    Hi,
    I bought a Mac Pro 13' Retina Display two weeks ago and today i bought a Bose SoundTouch 20 and i connected both to my home network by ethernet cord. when i try to use applications like iTunes to send the sound of a song from mac to bose it work perfect, but when i try to do the same with spottily (i downloaded the app for my mac) simply doesn't work and don't know why. Another issue is that either can't send the sound of the movies and videos from mac to bose (i already try this using this configuration: send by airplay the movie to apple tv and from apple tv send the sound to bose, all work perfect because all was connected with ethernet cord).
    So the question is, Anyone know why the Airplay function only work with iTunes and with other applications simply doesn't?

    AirPlay only works with iTunes for Mac OS, iOS devices, and Apple TV.
    Not third party (non Apple) apps such as Spotify
    If the Bose Sound Touch supports Bluetooth, you may be able to stream music to the Mac or Apple TV. That's for sound, not video.

  • How to use Entrust with java application on unix platform

    Hi all,
    i have question regarding the use of Entrust with java application on unix
    1)I want to use Entrust for encryption/decryption of the file in my core java application on unix platform.
    What should be requiremnet for the same and how it is implemented?.
    2) I want to Use Entrust for Authentication purpose in my java based web application on unix platform.
    What are requirements for Entrust Authentication and how it is implemented ?

    any one has solution?

  • How to use SSO with Forms application

    Can somebody explain, how can we configure the SSO with Forms application.
    I have two application server instances. One for infrastructre and Other for application.
    Thanks

    Have a look at http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsso.pdf and http://download-uk.oracle.com/docs/cd/B14099_19/web.1012/b14032/sso.htm#i1006721

  • Using AirTunes with other applications

    What I want to do is to stream the audio output from the 2 laptops in my house (MacBooks with Leopard) wirelessly to a hi-fi. I know an AirPort Express will do this with iTunes, but I don't think it will work with other applications, which is what I want.
    Am I right, and is there any cost-effective way to do what I want to do (Apple solution or not)?
    Thanks in advance.

    World Of Ste wrote:
    What I want to do is to stream the audio output from the 2 laptops in my house (MacBooks with Leopard) wirelessly to a hi-fi. I know an AirPort Express will do this with iTunes, but I don't think it will work with other applications, which is what I want.
    Am I right, and is there any cost-effective way to do what I want to do (Apple solution or not)?
    You might try Airfoil:
    http://www.versiontracker.com/dyn/moreinfo/macosx/26038
    Note that I haven't tried it myself.

  • Using application_process with packaged application SAVE_LARGE_VALUE ?

    I'm currently try to add the workaround "save large value" in my application. This is using 2 pages. Can I replace the POST page by an Application Process ?
    When I'm trying, it's doesn't work. The Application Process doesn't like : get.addParam. Do you know why ?
    Step :
    1 - Call clob_submit
    2 - $a_PostClob('P35_DESCRIPTION','SAVE','71',clob_SubmitReturn);
    <h3> 1- Html Header</h3>
    <script src="/i/javascript/apex_save_large.js" type="text/javascript"></script>
    <script type="text/javascript">
    function clob_Submit(){
              $a_PostClob('P35_DESCRIPTION','SAVE','71',clob_SubmitReturn);
    <h4>function clob_SubmitReturn(){</h4>
              if(p.readyState == 1){
                             $x_Show('AjaxLoading');
              }else if(p.readyState == 2){
              }else if(p.readyState == 3){
              }else if(p.readyState == 4){
    $x('P35_DESCRIPTION').value = '';                         
    $x_Hide('AjaxLoading');
    doSubmit(/*document.wwv_flow.p_request.value*/'SAVE');
              }else{return false;}
    <h4>function clob_Get(){</h4>
    $a_GetClob('GET','71',clob_GetReturn);
    <h4>function clob_GetReturn(){</h4>
              if(p.readyState == 1){
                             $x_Show('AjaxLoading');
              }else if(p.readyState == 2){
              }else if(p.readyState == 3){
              }else if(p.readyState == 4){
                             $x_Hide('AjaxLoading');
    oEdit1.loadHTML(p.responseText);
              }else{return false;}
    <h4>function doSubmit(r){</h4>
    $x('P35_DESCRIPTION').value = ''
         flowSelectAll();
         document.wwv_flow.p_request.value = r;
         document.wwv_flow.submit();
    <h3>2 - APEX_SAVE_LARGE.js</h3>
    /* Extended Javscript Objects */
    this adds better aysnc functionality
    to the htmldb_Get object
    pVar is the function that you want to call when the xmlhttp state changes
    in the function specified by pVar the xmlhttp object can be referenced by the variable p
    htmldb_Get.prototype.GetAsync = function(pVar){
    try{
    p = new XMLHttpRequest();
    }catch(e){
    p = new ActiveXObject("Msxml2.XMLHTTP");
    try {
         var startTime = new Date();
                   p.open("POST", this.base, true);
                   if(p){
                             p.onreadystatechange = pVar;
                             p.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
                             p.send(this.queryString == null ? this.params : this.queryString );
                             return p;
              }catch(e){
    return false;
    /* Begin Post and Retrieve Large Strings */
    <h4>function $a_PostClob(pThis,pRequest,pPage,pReturnFunction){</h4>
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,pRequest,pPage, null, 'wwv_flow.accept');
    var lSplitter = html_GetElement(pThis);
    var lSplitterValue = lSplitter.value;
    var i=0;
    if (lSplitterValue.length<=4000) {
    get.addParam('f01',lSplitterValue);
    } else {
    while (lSplitterValue.length>4000) {
    get.addParam('f01',lSplitterValue.substr(0,4000));
    lSplitterValue = lSplitterValue.substr(4000,lSplitterValue.length-4000);
    i++;
    get.addParam('f01',lSplitterValue);
    get.GetAsync(pReturnFunction);
    get=null;
    <h4>function $a_GetClob(pRequest,pPage,pReturnFunction){</h4>
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,pRequest,pPage, null,'wwv_flow.accept');
    get.GetAsync(pReturnFunction);
    get = null;
    x = null;
    /* End Post and Retrieve Large Strings */
    Sylvain Michaud
    Homepage : http://www.insum.ca
    InSum Solutions' blog : http://insum-apex.blogspot.com

    My example is finish.
    Workspace : listecd
    Login : GUEST
    Password : GU4EST
    Application : http://apex.oracle.com/pls/otn/f?p=29216
    Page # 2 Html Header :
    You have two choice
    <h3>1 - This is to call the page 3</h3>
    /*$a_PostClob('P2_COL1','SAVE','3',clob_SubmitReturn);*/
    <h3>2 - This is to call the application process.</h3>
    var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=saveclob',0);
    var lSplitter = html_GetElement('P2_COL1');
    var lSplitterValue = lSplitter.value;
    var i=0;
    if (lSplitterValue.length<=4000) {
    get.addParam('f01',lSplitterValue);
    } else {
    while (lSplitterValue.length>4000) {
    get.addParam('f01',lSplitterValue.substr(0,4000));
    lSplitterValue = lSplitterValue.substr(4000,lSplitterValue.length-4000);
    i++;
    get.addParam('f01',lSplitterValue);
    get.GetAsync('clob_SubmitReturn');
    get=null;
    Add or remove comment to use it. The first method work fine but the other doesn't work.
    I want to know what's the best way to integrate this method with create record and update record. In this example, you can update record but you can't insert new record.
    Thanks. I'm waiting your comments.
    Sylvain Michaud
    Homepage : http://www.insum.ca
    InSum Solutions' blog : http://insum-apex.blogspot.com
    Message was edited by:
    smichaud

  • How to use pda with java application

    hi all,
    i m new to J2ME technology. i have never worked on it. now i want to create java application which communicates with PDA.
    can anyone pls provide me the tutorial link for the same. i m looking in the google but till now i have not got any thing which will give me example of java applicatiion with PDA.
    pls help me out guys.
    thnx in adv.
    regards
    ritu

    hello all,
    i am new to PDA developemt
    i want to create a application in java for PDA using win CE tomcatspring framework
    pls send me some site that have sample code for creating applincation for PDA using java.
    thanks

  • ALBPM5.7: Using ALUI with struts application??

    I have a fully functional struts application that uses PAPI to interact with ALBPM5.7. Now I want to Expose all UI screens on the portal server. This need not be portlets, rather using ALUI framework/ EDK to wrap the UI JSPs and expose them in our portal
    Can I reuse my Struts Application with ALUI in some way.
    Thanks.
    Edited by [email protected] at 12/11/2007 9:49 PM

    Ravinder,
    Yes, of course you can bring your struts web application on ALUI portal as a portlet.In general, any web application running either on remote server or ALUI server can be brought up to the ALUI portal.
    If your Struts application is running on the remote server ,here is the steps to view this application on ALUI Portal :
    Login to your ALUI admin ( http://<hostname>:<portnumber >/portal/server.pt(like http://yh759.yashind.com:7001/portal/server.pt) with Administrator as userid(no password required by default)
    Create a Remote server in ALUI where you need to have the info of your Struts application server info
    Create a remote webservice for portlet
    Create a portlet out of that remote webservice
    Put this portlet on any page.
    Alo you can find the online help on ALUI admin conosle for doing all the above steps.
    Thanks
    Bishnu
    Regards
    Bishnu

  • Using Remote with other Applications

    Okay, so I want to use my Apple remote to control VLC (a media player) so I can use it whenever without having to get up and pause, skip forward, or skip backward with my keyboard. So anyway...I downloaded this program that looked very promising
    http://www.macupdate.com/info.php/id/23518
    But it doesn't seem to let me add new applications which is a real bummer. Has anyone figured out a way to do this, or something similar to customize the uses of the Apple remote? Any help is greatly appreciated

    I think you may want this,http://www.apple.com/downloads/macosx/productivity_tools/mira.html it cost money for the full version but the demo works just fine(it seems to last forever).
    Intel based iMac   Mac OS X (10.4.8)  

  • Can i use labview with other applications

    Hi,
    I was wondering if i could use an application written in c++ with labview...
    like the whole application has a lot of feactures... and kind of acts like a
    debugger for our products....
    So, how would i be able to combine this application with labview...
    Ne thoughts of doing it in some other way...would also be appreciated..
    thx
    Abhimanyu...
    (also please refer to my last post...from yesterday)

    Well i don't think there is easier way of bring your VC++ app with graphics into labview unless you create an ActiveX control (which would be laborious) out of it using ATL/MFC. Then calling that ActiveX control in ActiveX container in labview and use the exported properties and method of that control.
    But if you want to get the functionality transported, the best way i would go with is writing DLL that exports functions from your C++ app and call that DLL in labview.
    A Rafiq
    National Instruments

  • Using Auditing with Oracle Applications

    Hi all,
    I need some help here!
    I want to audit " create user" and create responsibilities and responsibilities association on my Oracle APPS enviroment.
    I think that the "create user" is just put the AUDIT_TRAIL='DB' and then execute the command "audit create user by access" is just that??? Then i will query the table SYS.AUDIT$ and audit_action to see the results using the number 51 that is the action of 'create user'.
    Hos to audit create responsibilities and responsibility associations??? I just know that we can activate some auditing using the system profile but don't help with these auditing that i need. I know that we have view like FND_LOGIN_RESPONSIBILITIES that show me some information about changed responsibilities.
    Tks a lot,
    Paulo Portugal

    Why don't you consider AuditTrail? AuditTrail maintains a full history of changes made at the table/column level.
    For more details, check the following thread:
    Where to see result after auditing table columns in System Administrat
    Re: Where to see result after auditing  table columns in System Administrat

  • Using yahoo with mail application

    Hi, I just got a Macbook Pro for Christmas, and can't access my regular yahoo email account with the mail program in the dashboard. I did get my hotmail account to work, why won't yahoo work unless you have the paid version? Is it just the POP version, or does it work with IMAP or the other options? I really don't know what those mean, but I would really like to be able to get my yahoo email from the dashboard!

    drservaes wrote:
    Hi, I just got a Macbook Pro for Christmas, and can't access my regular yahoo email account with the mail program in the dashboard. I did get my hotmail account to work, why won't yahoo work unless you have the paid version? Is it just the POP version, or does it work with IMAP or the other options? I really don't know what those mean, but I would really like to be able to get my yahoo email from the dashboard!
    You'll have to take up the issue of why Yahoo does not work with Mail unless it is the paid for version with Yahoo. It is their product and they made a business decision several years ago that they want payment for this type of access.
    See Yahoo's site for details. http://overview.mail.yahoo.com/enhancements/mailplus

  • Can I use Solaris with my Home Recording Studio?

    Hello,
    I am currently building a basic home recording studio. I recently assembled a new computer and will be purchasing music recording equipment very soon. Before I purchase the audio recording gear, I was curious about a few things pertaining to the use of Solaris as my possible choice system.
    The data that I store on my hard drives will need to be secure. I had originally considered RAID 5 though recently found out about RAID Z, which appears to be far ahead of the other RAIDs. I am curious to know more about how to set up a RAID Z system.
    The computer will be running Solaris, various Linux or BSD, and Windows Vista. I have 500GB x4 hard drives. I am considering separating one and using it strictly for Vista, and using the remaining 3 with a RAID set-up for nix. If I had a choice, I would put much less hard drive space into Vista (capping it at 150 to 200 GB), though I have yet to come across a RAID system that effectively or efficiently cooperates cross-platform. With that in mind, the majority of the remaining 1.5TB can go into my studio OS - hopefully Solaris - while left-over hard drive space is set aside for various other *nix.
    I've used Solaris 10 before, though haven't really gone into detail on the mechanics of such features as ZFS, zones, now RAID Z, and the many more amazing features that Solaris provides. Likewise, I am not really familiar with how well the system might operate with software/applications that I could use for recording and composing music.
    Beyond the available 2TB (or 1.5TB RAID-ready) space, my computer is running on a new 64-bit quad-core AMD CPU (~2.6GHz) and currently has 4GB 1066MHz RAM. In my search for preparing a computer that suits me for high performance recording - including the editing and mastering of audio - I am attempting to narrow down my options on the software side of things. I have been very satisfied with the general file management of Solaris, though am unsure of how well it might run as the software side of a home recording studio. An additional factor in deciding will be the software's compatbility with audio PCI cards and external recording/audio interfaces. There is always a question of whether or not the necessary drivers, firmware, or similar is available between any given hardware and software components.
    Some other *nix options I have considered - "Ubuntu Studio 64-bit" (though it appears to prefer 32-bit) and "64 Studio" (also Debian-based, though appears to be optimized for 64-bit). Some colleagues have used Gentoo with studio applications, though I don't know of any Linux distributions that offer the versatility, power, stability, and efficiency of Solaris for the operating system that it is.
    If I use something like "64 Studio", I will have the advantage of a system that is ready-built for studio recording purposes as well as a system that I know is compatible with the sound gear that I am considering purchasing. However, those systems are restricted by their file system types, RAID availability and dependability, and the general disadvantages of using the Linux kernel in general. (I enjoy Linux, though I admittedly prefer Unix over it.)
    Can I use Solaris with my home recording studio?
    Thank you!
    Edited by: the_professor on Nov 9, 2008 6:26 PM
    Corrected a typo.
    Edited by: the_professor on Nov 9, 2008 6:30 PM
    Caught another typo.

    I'm not sure what your question is. If you have particular software you want to run, you should see what you can get that package to run under. Sound hw stuff don't tend to be too portable unless it's written on top of OSS (htttp://www.opensound.com). Were I you, I'd consider separating out the storage part and the processing part. Get something like a cheap dell sc440 to be a file server and give the drives to that (unless you actually can get all the components working under solaris).
    -r

  • How to use JAXB2 with OC4J 10.1.3??

    Hi,
    It seems that xml.jar (JAXB1) is in the classpath of AS.How can I use JAXB2 with my application??
    Please
    Help
    JO

    OK I found it on my own.
    while deploying using the console
    Unchecked import the oracle.xml library.
    But hown Can I do the same wile using ant ??
    Please advise.
    JO

  • Problem while using XML with Oracle

    I have a problem using XML with oracle applications
    The process I am following
    1. Making a XML string.
    2. Parsing it to get a document
    3. Free the parser using xmlparser.freeparser
    4. Traversing through nodes .
    5. Freeing the document.
    The whole Process is executed in batch mode.
    The problem occurs after executing the procedure for 5000 records and I get the error
    ORA-04031: unable to allocate 4176 bytes of shared memory ("shared pool","unknown object","sga
    heap","library cache")
    Can you please help me out to overcome this problem
    It's urgent
    I have
    Oracle version 8.1.7.0.0
    XML version 1.2
    OS Windows NT
    To resolve the problem I have increase shared memory size and java initialization parameters ,which seems OK
    Looking forward for your answer.

    Hello, Reena
    Your process flow seems to be correct in term of getting/freeing memory.
    Following error
    The problem occurs after executing the procedure for 5000 records and I get the error
    ORA-04031: unable to allocate 4176 bytes of shared memory ("shared pool","unknown object","sga
    heap","library cache")may be caused by memory leaks in xdk or memory fragmentation(due to get/free memory cycle)
    To find out if this is an memory leak issue you could try to monitor V$SGASTAT from one session while running your batch process in another session.
    To prevent (or lower its impact) fragmentation issues try to PIN objects, and adjust java_pool_size and shared_pool_reserved_size.
    Anyway, counsult your Oracle DBA.
    Oracle version 8.1.7.0.0I think, you should apply database patch first of all. The latest one (8.1.7.4.x) could be accured from Metalink.

Maybe you are looking for

  • HT6154 My Iphone 4 started talking to me today and I can no longer get it to recognize my password.  Any suggestions?

    My IPhone 4 started talking while I was at work today, and I can no longer get it to recognize my password.  It freezes up and will not function properly, nor can I answer incoming calls.  I've reset the phone twice, but to no avail.  I currently hav

  • Problem while MIGO

    Hi all, I am trying to receive a purchase order but it says "No goods receipt possible for this PO". The only thing was not normal, while putting the confirmation it said header data is not complete but i saved it anyways. Please let me know what sho

  • Sharing JMS sender communication channels

    Hi all, We have flatfile interfaces to XI JMS where we would like to share the JMS sender communication channel. This is normally not possible since you cannot have two sender agreements with the same comm channel. Are there workarounds for sharing J

  • TS error applying commands pwercfg and control

    Hi I have SCCM 2012 R2 wit MDT2013 integration I made TS where I apply Win7 and Win81. I putted some customization after Install application settings. I need to change power scheme and some user locale configs. Each command is in separate step and St

  • How to make a straight line of points in a curve in CS6

    In PSCS5 and earlier, I used to be able to make a straight line of points in a curve by placing 9 points on the straight line curve.  I did this by drawing a small straight line at the bottom of the curve using the pencil tool and then clicking the c