Tagged Questions
0
votes
1answer
44 views
XY Coordinate of cursor on click in X11
I've looked through some of the docs but can't find a nice description of how to get the cursor's position (in terms of pixels from top-left 0,0) in the window on click.
Any help is appreciated :D
2
votes
0answers
71 views
Cursor waits in the wrong window
I am developing a simple chat. The chat client is based on ncurses, and has two window:
The "input" window, where users enter messages.
The "output" window, where users see messages by other users.
...
1
vote
2answers
193 views
C phonebook program: Reposition cursor in text file to start of previous line
writing a C program which opens a text file called phoneList.txt and searches for contacts (firstname, lastname, phonenumber), and updates an existing contact's phone number. My issue is in the ...
1
vote
2answers
88 views
The \b in my code won't bring the cursor back
#include <stdio.h>
int main()
{
int answer;
printf("Please insert your desired budget :"); //normal printf functions.
printf(" $_____\b\b\b\b"); //This should move the curser back 4 ...
5
votes
1answer
148 views
goocanvas - coordinate systems and zooming to cursor
I am trying to implement zoom towards the pointer/cursor within a goocanvas which is located within a scrolledwindow. Unfortunately the documentation about coordinate systems used is less than ...
2
votes
1answer
275 views
ncurses: wgetch fails to read correctly after moving / resizing window
I am having a hard time trying to get wgetch to read data from a window after moving and resizing it.
Upon input, I move the window up and increase it's height by 1 too. I then clear the window and ...
0
votes
1answer
65 views
Shift File Cursor Two Lines In C
i want to shift the cursor two lines. What i mean is i want to ignore first two lines and get the third line of a file. Here is my code:
void dosyaImlecOtele(int satir,FILE *dosya){
int ...
0
votes
1answer
260 views
Why doesn't the window set cursor correctly?
As MSDN describes:
When the mouse moves over a window, the window receives a WM_SETCURSOR message (unless another window has captured the mouse).
If the application passes WM_SETCURSOR to ...
0
votes
1answer
1k views
Oracle Pro*C updating table with cursor failed
I have a table like this:
CREATE TABLE book_info (
book_id VARCHAR(32) not null,
title varchar(255) not null,
author ...
0
votes
1answer
923 views
How do I get the gdk window for a gtk window in C?
I'm trying to set the cursor to a watch. The problem is that gdk_set_cursor() requires a gdk_window. How do I get the gdk_window of a gtk_window in C? I've seen examples for gtkmm and pygtk but I ...
0
votes
2answers
588 views
How to change the cursor to a watch in GTK for C?
I'm using the C-style GTK functions in C++ and I can't figure out how to set the cursor for the main window.
0
votes
2answers
579 views
Oracle Pro*C : Handling end of fetch cursor
I can't figure out the problem on my code :
/* Declare a cursor for the FETCH statement. */
EXEC SQL DECLARE customer_cursor CURSOR FOR
SELECT CUSTOMER_ID, CUSTOMER_NAME
FROM CUSTOMER_TABLE
WHERE ...
2
votes
2answers
483 views
Set X11 cursor to arrow
I attempted the following in a call to XCreateWindow():
unsigned long ctt_attribute_mask = CWWinGravity | CWCursor;
ctt_attributes->win_gravity = NorthEastGravity;
ctt_attributes->cursor = ...
1
vote
0answers
159 views
How to transpose the X & Y cursor movement of a mouse [duplicate]
Possible Duplicate:
How to interchange X axis to Y axis of a digitizer tablet
How to transpose the X & Y movement of mouse Cursor. ie, when I move the mouse to
right position the cursor ...
0
votes
2answers
568 views
C ANSI Escape Code
How can I do cursor control with ANSI using escape sequences using Turbo C? Here I've provided a code, but it's not yet working in my TurboC.
main()
{
while( getche() != '.' )
...
1
vote
2answers
415 views
C Cursor Question
I'm a newbie in Turbo C... Just want to ask what is the first thing should I do to enable the use of cursor. I'd like to control the cursor and redefine keys on the keyboard as well. Please give me ...
1
vote
2answers
96 views
GetObject fails on a text cursor
I'm trying to fetch the cursor bitmap in order to compute a snapshot with the mouse cursor.
It works fine with the standard cursor (IE. the arrow) but it fails as soon as the cursor becomes a text ...
1
vote
3answers
729 views
Create a cursor from .cur format bytes?
I can find a couple ways to create a cursor in win32 but I need the third, the one I can't find.
The first I can find is to use LoadXXX() to open a file or resource and load the cursor that way.
The ...
3
votes
4answers
839 views
C commandline app : how to programatically move cursor
I am writing a commandline calculator in C, and it would be very useful if it had the ability to move the cursor each time you close (for example) a parenthesis highlighting the previous one, like in ...
5
votes
4answers
4k views
Hide cursor on remote terminal
I have an open socket to a remote terminal. Using the answer to "Force telnet client into character mode" I was able to put that terminal into character mode.
My question is, how do I hide the cursor ...
6
votes
4answers
2k views
C moving the cursor to the beginning of the current line
I want to print current time (by using printf) in same place, but i want to do it in infinite loop eg:
while(1) {printf("Date and Time are %s", asctime(localtime(¤t))); }
. So before i ...
0
votes
2answers
101 views
SQL query comparision in ProC with and without using cursor
Which, query performance wise, is more effective?
Considering T is a table, and PK is the primary key in the table T. Are they different or they are just a matter of choice?
select col1, col2 into ...