plugins

QT for cross platform plugin development?

I have a pre existing application, that calls out into a plugin library. I want the plugin library to be developed in QT, and to be able to display a QT UI. However, when I attempt to create a QWidget it complains that the QApplication needs to be created first. Is it not possible to use QT to develop cross platform plugins? E.g. a net...

About the fix for the interference between Company mode and Yasnippet

Emacs wiki says: Company does interfere with Yasnippet’s native behaviour. Here’s a quick fix: http://gist.github.com/265010 The code is the following: (define-key company-active-map "\t" 'company-yasnippet-or-completion) (defun company-yasnippet-or-completion () (interactive) (if (yas/expansion-at-point) (progn ...

GWT app and Hibernate under Eclipse

Hello I have a GWT app created by GWT wizard under Eclipse. I also created a separate project (called Model) in the workspace where I put Hibernate classes and mapping hbm.xml files. Now I'd like to properly reference this project from my GWT project so that Hibernate configuration can successfuully load classes and mapping files from G...

Company mode (Emacs plugin) back-end could not be initialized?

Every time I initiate company-mode with M-x company-mode this message shows up: Company back-end 'company-semantic' could not be initialized Company back-end 'company-ropemacs' could not be initialized Company back-end 'company-pysmell' could not be initialized The completion works but I wonder whats the meaning of that message and ho...

Is there a VIM plugin that will show available functions from a class object in PHP?

for instance, say I create an object. $myobject = new MyClass; when I type $myobject->[I'd like a menu to pop up here with available functions] ...

is there a way to change the jquery datatable filter behavior

with a moderm browser, the jquery datatable plugin works very well but in ie6 i find that its almost impossible to type in teh filter textbox as the keypress filtering is insanely slow so the browser can't keep up with your typing. is there anyway to change the behavior so that it only searches and filter on enter key compared to every ...

Grails calendar plugin

Hi! I have a groovy application which uses the grails calendar plugin grails calendar plugin. Up to now I was using the calendar version 1.1.1 which has some bugs under IE. I've upgraded to version 1.2.0-SNAPSHOT3 but now I am getting this exception, therefore I had to downgrade to my previous version. Any hint how to workaround this p...

dylib @executable_path path issue in a plug-in bundle

Hi, I am developing a plug-in bundle, say MyPlugIn.bundle for an application, say BigApp.app. This bundle requires a dylib, say MyPlugIn.bundle/Contents/Resources/library.dylib. I have relocated paths for library.dylib, as I would have done for a simple application bundle: $ otool -L MyPlugIn.bundle/Contents/MacOS/MyPlugIn MyPlugIn.bun...

How to send data from AfterEffects plugin into the web?

So I'm creating a plug-in for Adobe After Effects. I want to establish connection between it and my server (for ex to send Ajax request for approving serial number, or just sending a short cut of a frame) how to do such thing? Any materials, blog articles would be wary grate. ...

How to start developing plugin for Apple's multimedia products , such as iMovie, iLife etc ?

Here is one sample product iMovie plug-in for Chroma Key I want to get some advice or suggest from people who had real experience on apple product plugin development. ...

Problem installing Auto-Complete plugin in Emacs

I downloaded Auto-Complete from here: http://github.com/m2ym/auto-complete/downloads, I placed all the files from the .zip file in my load-path (C:\...Application Data\.emacs.d\plugins\auto-complete-1.0), and added the following to my .emacs: ;; load auto complete (add-to-list 'load-path "~/.emacs.d/plugins/auto-complete-1.0") (require ...

Implementing dynamic plugins in Java

I'd like to implement a dynamic plugin feature in a Java application. Ideally: The application would define an interface Plugin with a method like getCapabilities(). A plugin would be a JAR pluginX.jar containing a class PluginXImpl implementing Plugin (and maybe some others). The user would put pluginX.jar in a special directory or se...

Put several Google Maps on page using Symfony and sfEasyGMapPlugin

I'm using Symfony 1.2.9 and sfEasyGMapPlugin 3.0.0 I need to put two gmaps on one page. I've made custom ma name and DIV's id for each map. But I still can't make it work. Only second map is shown. The first one is not created. Does anybody knows how to make them work using sfEasyGMapPlugin? ...

Declaring jQuery functions all over again to set different values on ie7. Any other way to do this?

Well i have a scrolling plugin that i'm using to move divs when i click nav anchors. There are two different settings, which i already didn't want to happen, but i had too since i didn't know a way around this: Look: var jump=function(e) { //the plugin code... scrollTop: $(target).offset().top - 110 } and another one with a differe...

Grails way to prevent bad request "ids" on url

Like here in stackoverflow if i force put bad characters on URL in id place it redirects you to a page error. I would like to know if with Grails it has some kind of plugin for prevent id like: "123$#3" or an easy way because i have a lot of actions and do something like below dont seems to be the best way: def find = { def v...

How to include a PDF Viewer plugin with a C# .NET app using webbrowser control?

I've have an app that is a xml/xslt driven document viewer. In its current state, a user points their own browser to the xml file and can view the pdf files from menu selections in their browser so long as they have a PDF viewer plugin such as Adobe Reader installed on their machine. Using the .NET webbrowser control, I was able to crea...

Make it easier to call a custom jQuery plugin

I have written a plugin with the following "signature": jQuery.fn.attach = function(element, settings, duration, options, callback) { Here element is a jQuery object, settings are my custom settings for my plugin and duration, options and callback are all parameters that I use in jQuery's animate, like this: someObject.animate({ some...

Mouse events aren't working in embed browser

Hello folks, i'm making an Itunes plugin with an embed browser attached to it. I can see it, and it works perfectly, but it can't receive mouse inputs! I think that itunes is getting all the inputs for it... anyone knows a way to solve this? ...

Difference between a jQuery plugin and a jQuery widget?

Can someone concisely explain the differences between jQuery plugins and jQuery UI widgets? What are the conceptual differences? Why would I choose one over the other and what pros and cons are there for each. What are the differences in the intention and concept for each? I've written both, but I'm not clear on the nitty gritty differe...

Is it possible to set a cookie from a browser plug-in?

Do browser plug-ins, such as the Yahoo toolbar or others, have the ability to set cookies on multiple domains as the user browses the web? Does the browser expose the necessary access to do this to a plug-in? If this varies across browsers, that would be helpful to know as well. Thanks! ...