Linux GUI programming
Hello. Could anybody please tell me which is the best software to do GUI programming in Linux and some books for it? ...
Hello. Could anybody please tell me which is the best software to do GUI programming in Linux and some books for it? ...
Specifically within Python (may extend to C and Java), what is the paramount library that every programmer should know how to use and why? ...
I have two Flex libraries that reference each other. Both use link type "External", and I manually load then with the Loader class. I'm getting the error "A cycle was detected in the build path of project: foo". Is there any way to resolve this? Maybe a parameter for the compiler or something. I don't think there should be a problem, ...
I am confused how to add/include/reference a set of supporting classes required for both server and client projects where WCF is involved. In my C# solution I have: A Server project doing server type stuff A Client project doing gui type stuff A WCF Library containing class definitions for network passed data objects The Server proj...
Hi there, I'm devdeloping a DLL in VS2008. When I examine the DLL in Dependency Walker, I can see a dependency on zlib1.dll. How can I find out where this comes from? My DLL is (statically) linked against HDF5.lib, HDF5_CPP.lib, and GSL.lib. I'm not including any zlib headers, so I'm a bit clueless about this. I know HDF5 depends on zlib...
I want to determine how similar 2 images are. The images may have been scaled, cropped, etc, so a simple pixel comparison won't work. I have had a look around and there are a lot of academic papers on this topic but they don't release their code. So, do you know of a released library that can compare images (for Linux and Windows)? ...
How do I fix this? dyld: Library not loaded: /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation Referenced from: /Users/[...]/Library/Application Support/iPhone Simulator/User/Applications/[...]/TestGame.app/TestGame Reason: image not found ...
I'm reading STL and Qt implementation now. The bits I need. And I ask question about things I don't understand. And I get some negative comments about that. I consider it a well spent time. In both cases I'm learning usable idioms. If some code seems to be overcomplicated (very often the case) I learn the reasons of it. I learn how to ...
I'm not going to go into detail on the "media player" part except the fact that it will obviously use plug-ins, which will be a simple dynamic library that is loaded at runtime. Now, I could link those plug-ins dynamically to their dependencies, or I could link them statically. Both have their advantages and disadvantage - I'm not counti...
I'm using Kohana's pagination library and it lets you specify the parameter uri_segment at initialization. When it generates the pages links, they will have that uri_segment you specified, and after that, the page link. Let's say: /some/uri/segments/6 where 6 is the page. Now, that enforces the page number to be the last uri segment. W...
I have created an assets.swf, in which I want to keep all my symbols. Then, I have created an Assets class which does the embedding. It looks like this: public class Assets extends MovieClip { [Embed(source="assets.swf", symbol="MyBox")] public static var MyBox:Class; public function Assets() { } } ...
I was wondering what good networking libraries/frameworks there are for Python. Please provide a link to the standard API documentation for the library, and perhaps a link to a decent tutorial to get started with it. A comment or two about its advantages/disadvantages would be nice as well. ...
Hey, I am trying to write a cocoa touch static library. To keep it simple I would prefer not to use private variables within my interface file. The code right now looks like this: interface file (myView.h): @interface myView: UIView { NSTimer * myTimer; } @end implementation file (myView.h) @implementation myView @end This NS...
Are there any good free C/C++ libraries that enable reading from common devices with filesystems such as UDF, and ISO9660 and extracting files/metadata etc.? So far all I've been able to find is GNUs libcdio which is promising, and some "Magic UDF" which has so many hits I'm disgusted, pushes other results in Google, and comes with a pr...
Hi there I m pretty sure there is an open source/free library for .net out there that does this already, so before I reinvent the wheel... I need to grab an some sort of input: could be a file, a string, etc and format it nicely. It will mostly be HTML and javascript, if CSS is supported nice. any ideas? ...
Hi, Do you know any java library for ppt to jpg conversion? I've tried openoffice3 and POI (http://poi.apache.org/slideshow/quick-guide.html). OpenOffice takes quite long to load (full startup), even though I want to convert the slides only. POI-HSLF only generates images for simple slides (created by myself). all the test slides get...
Im new to the Qt library and i was going through the demonstrations. I came across this class without a destructor.... this is the cpp file http://doc.trolltech.com/4.5/demos-mainwindow-mainwindow-cpp.html and here is the .h file http://doc.trolltech.com/4.5/demos-mainwindow-mainwindow-h.html the constructor uses the new operator but ...
Hey, I have a application and two Dlls. Both libraries are loaded by the application. I don't have the source of the application, but the source of the libs. I want to instantiate a class in lib A and want to use this instance also in lib B. How do I do this? I'm not sure, but I think that both libs are used in different threads of th...
I'm looking for a high-level java graphic library for creating artistic text, watermarks, resize, crop, image identification and manipulation. ImageMagic is a good example of such library, but its java ports are somewhat problematic (they either run imagemagic through JNI or via commandline and are hellish to deploy to servers). Ideally ...
I need to generate an RTF from within PHP. I've seen several libraries out there but wondering if anyone has used any of them or if they've just hand coded their own (which I'm perfectly able to do). Any opinions out there? TIA ...