Piotr Dobrogost
|
Registered User
|
C++ is the king
you can reach me at pd.2009.stackoverflow.dobrogost.pl |
|
Nov 19 |
comment |
How do I enable all EPIC projects to use Perl’s @INC? Thanks, will try this. |
|
Nov 13 |
comment |
How do I enable all EPIC projects to use Perl’s @INC? @Ivan Maybe it's by design? I have little experience with Perl and I'm not sure what the behavior in this scenario should be. |
|
Nov 13 |
asked | How do I enable all EPIC projects to use Perl’s @INC? |
|
Nov 11 |
comment |
Is XSLT worth it? Extending standard language with non-standard extensions is the worst thing one can do. What you end up with is neither XSLT nor CLR code. |
|
Nov 11 |
comment |
Is XSLT worth it? Tell us what was the size of C# code just after you rewrote these 2750 lines of XSLT. Giving the current size tells us nothing. |
|
Nov 11 |
comment |
Why has XSLT never seen the popularity of many other languages that came out during the internet boom? ...Nice post. +1 |
|
Oct 30 |
comment |
Where do you go for C++ news? Tell your boss the truth, tell him he will have been dead long before C++ will die :) |
|
Oct 14 |
answered | How many times is onunload triggered? |
|
Oct 9 |
comment |
What’s the most commonly used XML library for C++? If the author wanted to know answer on your question (Should I use XML?) he would have asked this question not the one he asked. -1 |
|
Oct 1 |
awarded | ● Popular Question |
|
Sep 29 |
revised |
Why does QWebFrame::evalutateJavaScript do nothing in this case? edited tags |
|
Sep 29 |
asked | Why does QWebFrame::evalutateJavaScript do nothing in this case? |
|
Sep 26 |
comment |
How to avoid entering library’s source files while debugging in Qt Creator with gdb? What do you think about Andy's proposition to just remove/hide library's source files? |
|
Sep 24 |
revised |
Global variable in Qt, how to? added 240 characters in body |
|
Sep 24 |
revised |
Global variable in Qt, how to? added 7 characters in body |
|
Sep 24 |
comment |
Global variable in Qt, how to? Yep |
|
Sep 24 |
answered | Global variable in Qt, how to? |
|
Sep 23 |
answered | Qt: Is is possible to get the QScriptEngine from QWebFrame? |
|
Sep 23 |
comment |
How to use Intel C++ Compiler with Qt Creator I don't see any connection between the article Deploying an Application on Windows and using Intel C++ compiler in Qt Creator. However, the second part of the advice (to use win32-icc platform description/configuration file) is ok. |
|
Sep 23 |
comment |
How to avoid entering library’s source files while debugging in Qt Creator with gdb? Andy, what you are describing is called STEP OUT and STEP OVER and has always been possible in pretty much every debugger. I don't want to manually step out/over Qt's source code. I want debugger to step over it automatically. rpg is right in his comment and he describes the feature I was asking about. |
|
Sep 21 |
awarded | ● Necromancer |
|
Sep 19 |
asked | How to avoid entering library’s source files while debugging in Qt Creator with gdb? |
|
Sep 18 |
revised |
Why “Follow symbol under cursor” does not work in QT Creator for Mac OS X? edited tags |
|
Sep 16 |
accepted | Initializing qt resources embedded in static library |
|
Sep 15 |
comment |
Initializing qt resources embedded in static library It doesn't matter it works fine now :) It works only by accident. It can stop working the moment you start using another compiler or even another version of the same compiler. It's UNDEFINED BEHAVIOR. The reason it works now is because when you have initialization code in one of the widget's files compiler happens to initialize your resources first. Pure luck, nothing more. If you don't want to get your program working 0% one sunny day follow instructions to avoid static initialization order fiasco. |
|
Sep 14 |
answered | How to create a subdirectory for a project in qt-creator? |
|
Sep 14 |
revised |
Initializing qt resources embedded in static library deleted 14 characters in body |
|
Sep 14 |
revised |
Initializing qt resources embedded in static library edited tags |
|
Sep 14 |
answered | Initializing qt resources embedded in static library |
|
Sep 14 |
comment |
Initializing qt resources embedded in static library Using inline above doesn't buy you anything as you have no guarantee it will be respected by a compiler. Not respecting this keyword is in accordance with c++ standard. So if this solution is based on assumption inline function will be inlined it's broken. |
|
Sep 11 |
answered | Why is Qt looking for my slot in the base class instead of derived one? |
|
Sep 7 |
asked | Why is Qt looking for my slot in the base class instead of derived one? |
|
Aug 29 |
comment |
How to know when a web page is loaded when using QtWebKit? I tried using timer just to check if this would solve the problem at all. It works with timer and the most important thing is it's enough to set timer to only 10ms. This leads me to believe it's so short interval that it's only long enough to leave the function I was calling js from. This in turn leads me to suspect I have some timing issues in my code which are not related directly to the problem we are talking about. It's possible as I'm using QStateMachine and my own command queue (stackoverflow.com/questions/1265354). So after our discussion I'm back to debugging... |
|
Aug 29 |
comment |
How to know when a web page is loaded when using QtWebKit? However, there is no guarantee (...) That's why I wrote in my first comment above I guess waiting only on finished() signal of QNAM is not enough as after receiving data QWebFrame has to modify DOM and maybe do other things before it's ready to handle js calls. However, I can't afford 5 seconds timer (not even 1 second) as my app is making many requests and this would be too much waiting. |
|
Aug 28 |
comment |
How to know when a web page is loaded when using QtWebKit? Doesn't attaching to QWebPage::loadFinished signal achieve the same effect as creating window.onload handler? |
|
Aug 28 |
comment |
How to know when a web page is loaded when using QtWebKit? Maybe you are right and I just can't see it :) I'm not sure what you mean by cross-site scripting though. There is only one site here and my app is browsing it the same way a real user would have been doing this. So called web scraping if you will. When you write I want to know when someone else's script has finished executing you are right. I have to know this because this ends with data being downloaded and I need this data to work with. To be more precise js function only initiates data download (that's the whole idea of ajax) and I have to know when this data is downloaded. |
|
Aug 28 |
comment |
How to know when a web page is loaded when using QtWebKit? Why do you think it's not going to work? With QtWebKit you have full access to DOM and JavaScript of the page and you can even call your own JavaScript. You have full access to network layer as well. What do you need more? What do you need HTTP statuses for? It's very low level stuff. All I want and need is to be able to simulate user's actions in the same environment user has during his normal browsing. Which of the features I need for this, does QtWebKit lack in your view? |
|
Aug 28 |
comment |
How to know when a web page is loaded when using QtWebKit? CONTINUED Essentially you already answered my original question. However I suspect that the problem I have now is somehow strongly connected with the answer to the original question. I think that without solving my current problem we can't say with 100% certainty that waiting for finished signal of QNAM is enough to be sure we have loaded and working page. By working I mean responding to js calls with the same effects as user can observe during normal browsing session. |
|
Aug 28 |
comment |
How to know when a web page is loaded when using QtWebKit? ad 1. Not exactly. I'm using QWebFrame::load as I don't need rendering phase at all. Currently however, I am using QWebView::setPage to view how the page looks like but this is only for debugging purpose. ad 2. I'm not interested in html alone so I don't use this signal here. ad 3. Yes. ad 4. Yes. The moment of this ajax call is strictly defined; it happens in the moment user clicks on part of a data row. Here is my problem. I'm calling the same js function with evaluateJavaScript and nothing happens; there is no network request being send (I'm monitoring all requests QNAM is sending). TBC |
|
Aug 28 |
comment |
How to know when a web page is loaded when using QtWebKit? Your line of thinking is good. It's what I'm doing now and it has been working till now. Now, I have a problem because I call some js function after receiving finished() signal and it has no effect although it should. When I call the same js function manually using a button on a form with a view of my page it works as it should - it sends a post asking about additional data. I guess waiting only on finished() signal of QNAM is not enough as after receiving data QWebFrame has to modify DOM and maybe do other things before it's ready to handle js calls. Please update your answer to reflect this. |
|
Aug 26 |
comment |
How to know when a web page is loaded when using QtWebKit? That's not my page, I can't change script it contains so I can't call my script/code from it. Ajax call is triggered by clicking on a data row (I'm simulating these clicks programmatically) and retrieves additional data. I need to read this data after it's loaded so I need to know when loading is completed. |
|
Aug 21 |
comment |
How to know when a web page is loaded when using QtWebKit? see my answer for answers to your questions |
|
Aug 21 |
answered | How to know when a web page is loaded when using QtWebKit? |
|
Aug 19 |
asked | How to know when a web page is loaded when using QtWebKit? |
|
Aug 12 |
comment |
How to design a state machine in face of non-blocking I/O? @MSalters You proposed adding new states to my state machine. Simultaneously I've got just an opposite advice here qtcentre.org/forum/… Could you please take a look at tell me what you think of it? |
|
Aug 12 |
comment |
How to design a state machine in face of non-blocking I/O? @MSalters From your comments I see you understand the subject well so I would like to hear more comments from you. The situation you describe is how it's now. I have a strong feeling that in current design, logic of my app is mixed up with logic of web page navigating, however. These are two different things and I would like to find design that would separate them. I have also tough problem deciding where the data should be put and transmitted - in events, in transitions, in slots or maybe in more than one place? This is interesting problem and maybe I should ask this in a new question. Ideas? |
|
Aug 12 |
comment |
How to design a state machine in face of non-blocking I/O? 1. I can't do blocking I/O in the framework I use. 2. It's not about doing a series of blocking I/O operations because after every I/O operation I have to hand control over to the state machine which decides what to do next. |
|
Aug 12 |
comment |
How to design a state machine in face of non-blocking I/O? @MSalters I only have one kind of network event which is LoadFinished. How can you know being inside handler for this event what kind of event should you generate? Currently when I receive this network event I always send the same Loaded event to the machine and it makes transition to let's say Connected state when already in Connecting state or transition to let's say LoggedIn state if already in LoggingIn state. |
|
Aug 12 |
revised |
How to design a state machine in face of non-blocking I/O? added 609 characters in body |
|
Aug 12 |
comment |
How to design a state machine in face of non-blocking I/O? @onebyone Asynchronous I/O events are delivered to my code and not directly to the queue or machine. I have to forward them manually. Besides machine's own event loop does not queue events it receives. So there could be the case, when machine would be busy at the time network event comes in and it would miss this event. I don't want this to happen. Right now I have only one queue and it's managed entirely by me. I also manage I/O events myself. See my answer to this question where I described my current design in details. |
