Programming :: Get Qt Plugins To Work?
Mar 21, 2011I've tried many times to get Qt plugins to work, but I just couldn't figure it out. I've written a small test application, how to write a plugin for it?
View 14 RepliesI've tried many times to get Qt plugins to work, but I just couldn't figure it out. I've written a small test application, how to write a plugin for it?
View 14 RepliesGiving Gnome DO a try but haven't been able to get any of the plugin's I selected to work. Also, any opinions on Cairo Dock vs DO in Docky mode? Which is more MAC like? Cairo has lots of settings and options seem like too many?
View 5 Replies View RelatedDownload firefox 4 from Index of /pub/mozilla.org/firefox/nightly/latest-trunk Unpack with ark to your home directry folder firefoxIn the folder firefox creat a new folder pluginscopy the contents from /usr/lib64/browser-plugins to the plugins folderStart firefox and there you go
View 9 Replies View RelatedI'm running Ubuntu 10.04 minimal with Openbox; far from a standard install but nearly everything works the way it should.
The problem appears quite simple:
Firefox does not recognise installed plugins (i.e, Flash) when running as the standard user; if I run the command 'sudo firefox' however, Firefox loads in plugins just as it should.
I've checked about:plugins in both instances and this has confirmed what is stated above. The list is populated when running as the super user, and empty when running as standard.
I have recently had to update Eclipse but it behaved weirdly, and there was an experimental plugin that I couldn't get to remove cleanly, so I decide to reinstall it completely, cleaning the old "metadata". The experimental plugin disappeared completely but I couldn't get Eclipse CDT and JDT to work. There's no C/C++ or Java perspective.
After having removed all the eclipse-related packages from my fedora box, I issued a few yum-install commands, specifying, among others, the eclipse-cdt and eclipse-jdt packages. They are showed to be installed in Eclipse, but I can't access their perspective. When I open C or Java sources the default inner editor or Emacs get called instead. I tried to reinstall the CDT and JDT plugins from inside Eclipse. The installation appears to be successful, Eclipse lists the plugins as being correctly installed, but I can't open the respective perspectives yet.
I use shoutcast to select streaming audio stations to play, depending on mood,whim, whatever.when I click on 'tune in' next to the audio station, rhythmbox pops up....and that's that. I would expect it to just start playing the station.If I select 'Radio' in rhythmbox's upper left panel, and -then- click 'tune in' on the shoutcast page next to the station I want, there's an entry made in the playist at that time, but then there's an error popup says: Couldn't Start Playback You do not have a decoder installed to handle this file. You might need to install the necessary plugins. Which is surprising. It's a shoutcast stream. It should just play. But anyway, I guess something didn't get installed in the default install.
View 2 Replies View RelatedI wanted to make some modifications to a Kate plugin, so I cloned the git repository, started doing a few changes, and it compiled. The problem is that when I run it, it uses the version of the plugin installed in the system, not the one compiled with Kate.
View 1 Replies View RelatedOnly the Computer bookmark works; if I click on the others, nothing happens. If I start Docky from terminal, this is the error message I get when I click on the bookmarks
Code:
[Error 14:08:03.018] [SystemService] Error opening files. The application doesn't support files/URIs or wasn't found
This worked earlier today when I set up the bookmarks plugin, but all of the sudden it's dead. Any ideas how to fix this?
Using PyQt4, is it possible to make a program where you can separately write custom QWidget subclasses and let the user add/remove them to your main app?
View 7 Replies View RelatedI wrote a test app that scans for plugins in a directory, calls their getWidget() method (implemented in my interface), and adds that widget to a layout.
The problem is that when I added a QTimer to my plugin class, it didn't work! Why?
And will it be easier to write the thing in Python and not use QPlugin? I just want to define a QWidget and have it added to the app.
I installed Codeblocks and build some programs, but I have two questions:1. Where are my header files placed, since I don't know where codeblocks is installed. Soemetimes I have to remove header file extension (.h) to be able to compile some source. I use gcc as setting for codeblocks to compile and build programs.2. Plugins for Codeblocks can be installed, but when browse codeblocks's wiki I can't find download links neither developer pages
View 3 Replies View RelatedI have been using Eclipse to program in Java for a long time, and have been using Jigloo for most of my GUI design. Recently I decided to try out the C/C++ plugin. I tried installing it, but it did not work. After many attempts, I finally gave up. However, after uninstalling it I found that Jigloo had stopped working. Any other plugins I try to install now also don't work. I have tried uninstalling and reinstalling plugins, and reinstalling eclipse, but nothing I have done fixes it. Although eclipse says that the software has been installed, nothing shows up in the features list or the plugins list.
Another problem: When I install eclipse from the repositories, it doesn't install a bunch of libraries and eclipse cannot recognize standard java files.
This code will execute fairly well, however, if you enter multiple values that are not A/a or b, 1 or 2, then when the program resets, cin does not behave normally. Instead of waiting for input, it acts as if it has already been given input, and the input is the next character from the one entered.For example, entering "345" and submitting it at the (cin >> a line will individually pass the values 3, 4, and 5 through the if/else and switch statements, rather than only inputting the first value, 3, or all the values, 345.
If you enter, for example, "3343634563456345", then it will pass through the do{}while(); loop 16 times, with each pass having a = to the next character value. The cin >> a; is performed, and this is verifiable in GDB, however it never asks for input from stdin, and instead gets its input from somewhere else. How can I observe that, and what is going on?Furthermore, if you enter "cdefghijklmnopqrstuvwxyzab", it will pass through 25 times, and stop at a, which goes through the switch, and ends at a case statement that does not adjust the false value of mreset, thereby allowing the program to end.
I got a problem about assert() on linux/unix && gcc , I wanna know how does assert() work,I mean that how does the assert() make the programme exit? Is assert() send SIGSEGV to programme or called function exit() or other ways?
View 4 Replies View RelatedI've tried instralling the c and c++ compilers on my fedora 13 machine and none of them seem to work. For example. i have this extremely simple c program that i try to compile and nothing works.
Code:
#include "stdio.h"
printf("Hello World"); when i type Code: [####localhost Desktop]# cc hello.c i get this error Code: hello.c:3: error: expected declaration specifiers or �...� before string constant
hello.c:3: warning: data definition has no type or storage class
[code]...
i've tried intalling a group of developers tools using yum groupinstall "Developers Tools" and nothing......
I have a script that will build a list of hosts and it works fine Code: for ((i=$START; i<=$END; i++)); do echo "$NAME$i"; done But I need it to build the START and END on different number formats (i.e. 1 -> 10, 01->10, 001 ->010)
I am trying to use the seq command but can't get it to work quite right with the -w flag in the following Code: for ((myseq=$START; myseq<=$END; myseq ++)) do echo "$NAME${myseq}" done I am fully aware that this syntax is probably wrong, and need to know how to correct it.
I'm having a bit of trouble getting the OR operator to work.This is the code that I have:
global.php:
Code:
$vars["admin link"] = "<a href='/path/to/admin.php'>Admin</a>";
$vars["admin ip"] = "xxx.xxx.xxx.xx1";
$vars["admin ip2"] = "xxx.xxx.xxx.xx2";
[Code]...
I've tried instralling the c and c++ compilers on my fedora 13 machine and none of them seem to work. For example. i have this extremely simple c program that i try to compile and nothing works.
Code:
#include "stdio.h"
printf("Hello World");
[Code]....
I understand that a website can set a cookie which means a little text file with a no. in it will be created on the client side, and then the no. will get sent to the server with every visit. But how is this used to customize a page? Does this mean that a MySQL database *has* to be created, which can be used to match up that no. with a particular login name, for instance? How exactly is this pulled off?
View 3 Replies View RelatedI understand that cookies are used to hold the information of what items has been added to a users shopping cart on the server side. But then what happens when the user clicks "Buy" - how is the data from the server (i.e. the amount) transferred to the payment mechanism, which is probably a third party like WorldPay or something?
I threw this togher based on the examples but the thread does not seem to run:
Code:
#include <stdio.h>
#include <pth.h>
[code]...
I'm on Fedora 13 and I have Chromium installed. How do I get more plugins like mplayer or vlc working? I installed firefox to test and gecko-mediaplayer, vlc, and more appear in aboutlugins from firefox but chrome only shows flash and mozplugger. I tried linking all of the plugins from the firefox directory to the chrome plugins directory but no luck.
View 1 Replies View RelatedI run in a problem today on Fedora 15
There are no Graphical User Interfaces showing up for DSSI Music Instruments.
This was the reason why ...
post from: [URL]
I have been trying to get the Editor to appear for DSSI-synths in Rosegarden for a long time. But no success. The same problem happens with jack-dssi-host and ghostess. Tried to put the hostname in /etc/hosts. Even tried with KDE.
But then I realized that I had no file /etc/hostname. Everything else worked anyway. So I made one, and put the hostname in it. And - halleluja - I have Editors!
So obviously these things (OSC?) looks for the file /etc/hostname.
Take me through the process one step at a time. I'm running ubuntu 10.10 LXDE environment. I've got ardour 2.x
View 5 Replies View RelatedI'm running ubuntu 10.04 as a guest on winxp.
I'm having trouble playing mp3 and video files on ubuntu, despite the fact I have downladed packages that include gstreamer ffmpeg video plugin,gstreamer extra plugins, and ubuntu restricted extras(plus some additional gstreamers).
The problem occurs with both mp3 and video files.Mp3 files are played only by my VLC player, but with a terrible stutter.The other players give visual indication that they are playing the file, but no music is heard.When I play video files, the picture is displayed, but also stutters at all players and no sound is heard.
I am having one Laptop. In that i am facing some error while installing linux OS. so i planned to install only terminal in my laptop. i dont want any gnome and etc.. simply i am going to use only c programming in my terminal. gcc compiler and shell to work "c" is enough for me. How to work in terminal and c programming.
View 6 Replies View RelatedI want to know that how the break points and watch points work in the GDB. I know the GDB works on symbol table. But would like to know more details of it. How watch points differ from break points.
View 3 Replies View RelatedDoes anyone know how to get HTML5 canvas to work in Internet Explorer? I tries to do it using excanvas and jqcanvas but had trouble using them.
View 11 Replies View Relatedon linux command promt cut command work.but the same command gives empty output in linus shell?F1=$(echo $line | cut -s -f26) NOT working in shellcat file | cut -s -f26 work!
View 3 Replies View RelatedThis is my first init script, so far, it atleast starts the daemon but it fails at creating a pid, so later on I can use to, to either stop it or reload it. Here's the current code: Further more, the script returns ok that it started the pid, when in fact, the pid fails in the background, this script needs MUCH improvement, some help would be nice to fix this script. :/
Code:
#! /bin/sh
### BEGIN INIT INFO
# Provides: znc
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
[Code]...