Font size [EDIT - Was: Using the keyboard]

Use this forum to flesh out your feature request before you enter it in <a href="http://dcpp.net/bugzilla/">Bugzilla</a>.

Moderator: Moderators

Locked
costre
Posts: 4
Joined: 2006-06-26 18:57

Font size [EDIT - Was: Using the keyboard]

Post by costre » 2006-12-10 06:47

I'd like to be able to solely use the keyboard for DC++.

As it is now, it's impossible to select and download any of the hits I get in the search windows, because pressing the tab-key won't let me enter the filelist and select any of the files.

If I am browing the file list and then press tab, it will jump back to the search options, though.

So it already sort of works, but only one-way ...
Last edited by costre on 2006-12-10 17:53, edited 1 time in total.
Thank god for TTH!
http://tth.istheshit.net

eMTee
Posts: 61
Joined: 2006-01-18 15:44
Location: Hungary

Post by eMTee » 2006-12-10 08:06

I think its because of a duplicated/missing control handle in the hwnd array in SearchFrame::onTab. The hublist control also inaccessible with tab key and pressing the tab in it moves the focus to the Purge button.

Code: Select all

Index: windows/SearchFrm.cpp
===================================================================
--- windows/SearchFrm.cpp	(revision 685)
+++ windows/SearchFrm.cpp	(working copy)
@@ -831,7 +831,7 @@
 void SearchFrame::onTab(bool shift) {
 	HWND wnds[] = {
 		ctrlSearch.m_hWnd, ctrlPurge.m_hWnd, ctrlMode.m_hWnd, ctrlSize.m_hWnd, ctrlSizeMode.m_hWnd,
-		ctrlFiletype.m_hWnd, ctrlSlots.m_hWnd, ctrlDoSearch.m_hWnd, ctrlSearch.m_hWnd,
+		ctrlFiletype.m_hWnd, ctrlSlots.m_hWnd, ctrlHubs.m_hWnd, ctrlDoSearch.m_hWnd, 
 		ctrlResults.m_hWnd
 	}; 
Someone pls. test it because I don't use/have MSVC :)
Everyone's got their opinions - They'll tell ya 'bout 'em all the time... /* Spock's Beard */

costre
Posts: 4
Joined: 2006-06-26 18:57

Post by costre » 2006-12-10 15:15

[EDIT]

I just saw that ElTratto entered the tab-bug a few threads ago. So much for that suggestion then ...

[/EDIT]

I might aswell ask this question here, while I'm at it:

Is there any way to increase the font size in, for example, the search window?
The font in the main chatwindow is adjustable, but the font shown in the other windows is not ... (perhaps it's set by windows, but that shouldn't be necessary either)
Thank god for TTH!
http://tth.istheshit.net

TheParanoidOne
Forum Moderator
Posts: 1420
Joined: 2003-04-22 14:37

Post by TheParanoidOne » 2006-12-11 05:19

costre wrote:Is there any way to increase the font size in, for example, the search window?
The font in the main chatwindow is adjustable, but the font shown in the other windows is not ... (perhaps it's set by windows, but that shouldn't be necessary either)
It's controlled by Windows.
The world is coming to an end. Please log off.

DC++ Guide | Words

costre
Posts: 4
Joined: 2006-06-26 18:57

Post by costre » 2006-12-11 07:10

I guess the most obvious question now is ... Can I change this font at all?
The settings must be hidden quite well as I can't seem to find any.
Thank god for TTH!
http://tth.istheshit.net

TheParanoidOne
Forum Moderator
Posts: 1420
Joined: 2003-04-22 14:37

Post by TheParanoidOne » 2006-12-11 15:04

Control Panel -> Display settings. The item you are looking for is "Icon". Not entirely intuitive, but ... :shrug:
The world is coming to an end. Please log off.

DC++ Guide | Words

costre
Posts: 4
Joined: 2006-06-26 18:57

Post by costre » 2006-12-11 16:41

Please ... I have set all available fonts in that list, including Icon, but none of them seem to change the font in the search window of DC++.
Something's not right.
Thank god for TTH!
http://tth.istheshit.net

TheParanoidOne
Forum Moderator
Posts: 1420
Joined: 2003-04-22 14:37

Post by TheParanoidOne » 2006-12-12 01:38

Ah, you're right. All other windows with column views (eg. Download queue) are affected by this change to the Icon text size. Search is the only one that isn't.

I guess this probably needs a code change to make the window honour the text size set by Windows, as the others windows do.
The world is coming to an end. Please log off.

DC++ Guide | Words

Locked