Tagged Questions
0
votes
1answer
142 views
Static Class Behaving Weird when Subclassed Win32
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
int wmId, wmEvent;
PAINTSTRUCT ps;
HDC hdc;
static HWND hDirectives;
static char inBuffer [256] = ...
0
votes
1answer
202 views
Static Control Scroll Bar not working Win32
case WM_VSCROLL: //in switch(message) in WinProc
wmId = GetWindowLong((HWND) lParam, GWL_ID);
//only one scroll bar so don't check it
...
1
vote
3answers
94 views
How do I understand what the following means?
Quoted from here:
if (to_end)
{
/* If we want to scroll to the end, including horizontal scrolling,
* then we just create a mark with right gravity at the end of the
* buffer. ...
0
votes
1answer
252 views
How can I disable editting for GtkTextView in C?
I tried this one and it generates a TextView window:
http://zetcode.com/tutorials/gtktutorial/gtktextview/
But I don't want it to be editable.
BTW, how can I show the scroll bar when the text ...