PS
Do you use a text editor or an IDE like QtCreator? If you use an editor, you could download and install the QtSDK installer (it contains a precompiled Qt4.5) and debug step by step your application and find out what is going on in fact. - Mar 06 2009
PS
You should initialise class' members like this:
AClass::AClass(QWidget *parent):
QWidget(parent),
m_aClassMember(this)
{
// constructor operations here
}
not:
AClass::AClass(QWidget *parent):
QWidget(parent)
{
m_aClassMember = ClassMember(this);
// constructor operations
}
- because the first way is faster - it initialises the members with given values. In the second way, objects are first created (initialised with default values) and then (in the constructor body) new objects are created and then assigned to the members (by copy methods).
PS
Here is a link to the updated Polish translation: http://rapidshare.com/files/205735721/pl_translation.zip.html - Mar 05 2009
Currently, there is a big mess in the main directory. I mean all object, moc and other qt-specific files are generated in this directory. You can add such lines to the .pro file to make files be generated in a separate directory:
MOC_DIR = build
OBJECTS_DIR = build
UI_HEADERS_DIR = build
UI_SOURCES_DIR = build
RCC_DIR = build
Moreover, you can do checking for the Bibliotheque directory on startup, whether it is in the app path or in app_path/../share/2ManDVD/Bibliotheque. Then you could add install instructions to the .pro file, so application could be installed and run from /usr/bin:
target.path = /usr/bin
BIBLIOTHEQUE_DIR.files = Bibliotheque
BIBLIOTHEQUE_DIR.path = /usr/share/2ManDVD
INSTALLS += target BIBLIOTHEQUE_DIR
You can do the same with the translations (to be looked up in /usr/share/2ManDVD/translations and loaded from there).
Cheers, Adrian. - Mar 02 2009
QString qtLocale = "qt_" + QLocale::system().name();
QTranslator qtTranslator(this);
if (qtTranslator.load(qtLocale, QLibraryInfo::location(QLibraryInfo::TranslationsPath)))
{
qApp->installTranslator(&qtTranslator);
}
else
{
qDebug() << "Failed to load Qt4 language file:"
<< QLibraryInfo::location(QLibraryInfo::TranslationsPath) + "/" + qtLocale;
} - Mar 02 2009
Yeah, it's me again ;) I've just translated 2ManDVD to Polish and corrected the English one. I hope I didn't waste my time and you will add the translations.
Zipped translations: http://rapidshare.com/files/203768487/2mandvd_translations.zip.html - Feb 28 2009
PS
Writing strings in English doesn't mean you can't translate your app into French. Many developers do so (as for example me) - write the strings in English and provide a dranslation by themselves.
My English was much worse until I started writing C++ code reading the Qt4 documentation and writing strings in English. I'm a proud Polish but this doesn't bother me in using English in such areas as C++ application, so don't be angry withe me for my comment ;) - Feb 16 2009

Network by adrian5632 26 comments
That's why I wrote that it was, but not is (look at the date of the comment you were suggested by - since that comment UbuDSL has been rewritten).
Quote:that confirm that you support ubuntu only, let me try to explain why 64bit list should be on /usr/lib64 and not in /usr/lib
It's not my fault that 64-bit Ubuntu version has native libraries in /usr/lib (32-bit libraries on a 64-bit version of Ubuntu are placed in the /usr/lib32 directory). You can easily install the UbuDSL library in the /usr/lib64 directory, by adding argument 'CONFIG+=lib64' while invoking the configure script. For example for openSUSE packages building the script command looks exactly like that:
./configure "CONFIG+=amd64\ lib64\ SoundModule"
But yes, it is my fault that I haven't written about it in the README file. I'll add note about this.
Quote:consider that like constructives critics
That's what I do. I just simply reply to your comments. I don't blame you about anything.
Finally, according to the attached libraries. The only application using the atm library is br2684ctl and only for this command the LD_LIBRARY_PATH macro is set to point this library. So, the only problem that would happen (in my view) is a trouble with invoking the br2684ctl command (if I'm wrong, correct me). - Sep 08 2008

Network by adrian5632 26 comments
Tell me where is written that Ubuntu is the only one supported distribution? It was, but, the project grew up and now more distros are suppoted.
Quote:does ubudsl search for a particular configuration file or what?
UbuDSL depends on the package manager. Currently supported are apt and zypper, so the distros that UbuDSL should work on are Debian, Ubuntu (and Ubuntu based), PCLinuxOS, openSUSE.
Quote:on 64 bit is /usr/lib64
Not in Ubuntu. On Ubuntu, system architecture libs are placed in /usr/lib.
Quote:you should not provide precompiled binaries and libs because they are linked with ones available on the system, thay may break program because for example
the lib wants hello.so but i may have hello1.so
The application was originally created for Ubuntu and, as you know, Ubuntu is contained on only one CD. And if only there were placed also the packages with needed software, the mentioned binaries wouldn't be attached to UbuDSL. Moreover, attached br2684ctl binaries are depended only on the atm library which is also attached (this lib does'nt require anything else than what the system provides). - Sep 08 2008

Plasma Themes by Znurre 16 comments

Network by adrian5632 26 comments

Network by adrian5632 26 comments
And what's the problem with livebox? In Ubuntu 7.10 everything works fine except one model of the wifi dongle. Now in Ubuntu 7.10 even this dongle is working great - U don't have to do anything, just plug the dongle in and click on the NetworkManager icon to connect (I know what I say, because I also have livebox and connect through the wifi dongle). - Dec 25 2007

Network by adrian5632 26 comments

Network by adrian5632 26 comments

Network by adrian5632 26 comments
And I'll tell you what I need to you (about the modem). - Aug 26 2007

Network by adrian5632 26 comments
*the protocol
*VPI
*VCI
*encapsulation
for your provider, I'll add it to the list. - Aug 24 2007
http://adrian5632.googlepages.com/smplayer_0.3.20-1_i386.deb
PLEASE DOWNLOAD WITH WGET
Made on ubuntu feisty beta
PS
I tried to make an universal binary, but it doesn't work, so I decided that I'll be making regularly deb packages. - Apr 14 2007
So if U can, upload version with qt4.
PS
I have ran smplayer_statifier in terminal and I get:
Debug: * application path: '/home/adrian/Desktop/smplayer-0.3.15/bin'
Debug: * data path: '/home/adrian/Desktop/smplayer-0.3.15/bin'
Debug: * translation path: '/home/adrian/Desktop/smplayer-0.3.15/bin'
Debug: * doc path: '/home/adrian/Desktop/smplayer-0.3.15/bin'
Debug: * icon path: '/home/adrian/Desktop/smplayer-0.3.15/bin/icons'
So I think, U changed everywhere prefix. Don't do it. Change only this line:
PREFIX=/usr/local
to this one:
PREFIX=./
in Makefile in main directory of smplayer. - Apr 12 2007
Can you download this program http://linux.softpedia.com/get/Programming/Assembler-Tools/ELF-statifier-11045.shtml and compile smplayer on your suse with prefix "./" in the makefile, then use downloaded program to add to the binary smplayer all needed libraries and send me compressed binary? I'll try to make an installer if it will work.
(how to use statifier:
statifier /path/tosmplayer_binary /path/to/smplayer_binary_with_libraries) - Apr 11 2007
Probably it was my fault because firstly I choose manslide root directory as effects library. I removed manslide config and ran manslide again and chose right directory with manslide effects and as i told, everything now is working perfectly.
And I have an suggestion: you should to add warning dialogs when the user hasn't programs needed by manslide (sox etc.)
And again, I'm very sorry:) - Apr 11 2007
On my previous computer, there was no output and no preview.
Now I've got a new one (with intel core 2 duo) and now Manslide shows me photos which are actually "encoded" but there is no output file and no preview after the creation of the project is complete. - Apr 10 2007
Link: http://adrian5632.googlepages.com/smplayer_0.3.12-2_i386.deb
WARNING: YOU NEED TO DOWNLOAD IT WITH WGET, BECAOUSE SERVER BROKES CONNECTION WITH BROWSER AT 3MB.
~~~~~~~~~~~~~~~~~~~~~~~~~~
and here you've got two screenshots of smplayer with oxygen icons:
http://adrian5632.googlepages.com/zrzutekranu.jpg
http://adrian5632.googlepages.com/zrzutekranu-SMPlayer-1.png - Apr 08 2007

Utilities by seraphyn 17 comments

GTK2 Themes by zietbukuel 6 comments
adrian5632@poczta.fm - Dec 23 2006

Karamba & Superkaramba by PARENA 156 comments
I wrote polish translation of dbKalendar and I don't know where to send it. (I don't know email of author) - Oct 14 2006

Various KDE 1.-4. Improvements by sabby7890 18 comments
wlasnie sciagam twoj instalator.
mam pytanie. Czy bedzieon mial/ ma mozliwosc instalowania programu z mozliwoscia zmieniania lokacji i dowiazywanie dynamicznych bibliotek( cos jak w pcbsd0 A TAK SWOJA DROGA TO BARDZO DOBRY POMYSL.
DZIEKI - Jul 07 2006

Kbfx Startmenu by ATAHUALPA 5 comments