Jump to content

GUI - 1) minor bug - 2) enlarge fields...


emc

Recommended Posts

about the fields length..

there are not the only ones.. why dont u extend new labels just after they've been created so that they take maximum space?

what's strange is that in the advanced settings dialog, the textbox control is too large, which is needless, while the other controls (the buttons and the label) are too small..

Link to comment
Share on other sites

How would µTorrent determine what "maximum" space is? The only way to do so is to hardcode what takes up how much space to the left and right. In such a case, they might as well hardcode the values instead of letting it detect it automatically -- which is what's already done.

Link to comment
Share on other sites

uTorrent 1.7 BETA (Build 1111)

-----------------------------------------------------------

DIALOG 22 (Connection)

original:

CONTROL "", 1097, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 142, 40, 137, 9

corrected:

CONTROL "", 1097, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 142, 40, 135, 9

-----------------------------------------------------------

DIALOG 25 (Scheduler)

original:

scheduleroriginalvi8.png

corrected (enlarged text fields, but I didn't find the resource code):

schedulercorrectedil9.png

original:

CONTROL "", -1, BUTTON, BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 160, 124, 120, 63

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 164, 134, 111, 50

corrected (enlarged text field):

CONTROL "", -1, BUTTON, BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 160, 124, 120, 77

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 164, 134, 111, 64

-----------------------------------------------------------

DIALOG 26 (Other)

original:

Allow µTorrent to send anonymous version number and random id when checking for new version

corrected (maybe will be better - only single line):

Allow to send anonymous version number and id when checking version

-----------------------------------------------------------

DIALOG 27 (Advanced)

original:

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 7, 160, 29, 8

CONTROL "", 1152, BUTTON, BS_AUTORADIOBUTTON | WS_CHILD, 72, 160, 40, 10

CONTROL "", 1153, BUTTON, BS_AUTORADIOBUTTON | WS_CHILD, 122, 160, 40, 10

CONTROL "", 1148, EDIT, ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 37, 158, 152, 13

CONTROL "", 1149, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 193, 158, 38, 13

CONTROL "", 1150, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 235, 158, 38, 13

corrected (as dAbReAkA think):

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 7, 160, 38, 8

CONTROL "", 1152, BUTTON, BS_AUTORADIOBUTTON | WS_CHILD, 57, 160, 45, 10

CONTROL "", 1153, BUTTON, BS_AUTORADIOBUTTON | WS_CHILD, 112, 160, 45, 10

CONTROL "", 1148, EDIT, ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 47, 158, 117, 13

CONTROL "", 1149, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 172, 158, 48, 13

CONTROL "", 1150, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 225, 158, 48, 13

Link to comment
Share on other sites

@ BitTorrent Developers

uTorrent 1.7 BETA (Build 1137)

----------------------------------------------------------

DIALOG 25 (Scheduler)

I am sorry for my mistake. If the field "Full speed", "Limited" and "Turn off" is enlarged to 6 squares, it is a problem with "flash info" about selected day and time...

After my bad correction the "flash info" overlaps with field "Full speed".

I suggest these two solvings:

1st:

schedulermovedpq5.png

2nd:

schedulerbackyl9.png

----------------------------------------------------------

DIALOG 25 (Scheduler)

original:

CONTROL "", 1221, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 8, 165, 109, 10

corrected:

CONTROL "", 1221, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 8, 165, 139, 10

----------------------------------------------------------

DIALOG 41 (Add New Torrent)

original:

CONTROL "", 1201, COMBOBOX, CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 15, 19, 241, 82

CONTROL "", 1203, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 260, 19, 17, 12

CONTROL "", 1202, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 16, 37, 90, 10

CONTROL "", 1204, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 16, 50, 90, 10

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 122, 37, 28, 8

CONTROL "", 1214, COMBOBOX, CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 151, 34, 105, 161

CONTROL "", 1254, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 122, 50, 90, 10

corrected:

CONTROL "", 1201, COMBOBOX, CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 15, 19, 243, 82

CONTROL "", 1203, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 261, 19, 17, 12

CONTROL "", 1202, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 16, 37, 100, 10

CONTROL "", 1204, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 16, 50, 100, 10

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 122, 37, 41, 8

CONTROL "", 1214, COMBOBOX, CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 165, 34, 93, 159

CONTROL "", 1254, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 122, 50, 100, 10

----------------------------------------------------------

DIALOG 42 (Torrent Properties)

original:

CONTROL "", 1131, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 12, 222, 61, 10

CONTROL "", 1166, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 90, 222, 66, 10

corrected:

CONTROL "", 1131, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 12, 222, 71, 10

CONTROL "", 1166, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 90, 222, 71, 10

----------------------------------------------------------

DIALOG 44 (Speed Guide)

original:

CONTROL "", 1168, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 15, 135, 50, 8

CONTROL "", 1176, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 138, 135, 50, 8

CONTROL "", 1167, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 15, 148, 85, 8

CONTROL "", 1235, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 138, 148, 86, 8

CONTROL "", 1236, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 138, 162, 90, 8

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 11, 215, 56, 8

CONTROL "", 1240, EDIT, ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 67, 213, 36, 13

CONTROL "", 1239, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 110, 212, 138, 14

corrected:

CONTROL "", 1168, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 15, 135, 63, 8

CONTROL "", 1176, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 138, 135, 79, 8

CONTROL "", 1167, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 15, 148, 80, 8

CONTROL "", 1235, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 138, 148, 79, 8

CONTROL "", 1236, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 138, 162, 79, 8

CONTROL "", -1, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 11, 215, 58, 8

CONTROL "", 1240, EDIT, ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 73, 213, 36, 13

CONTROL "", 1239, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 113, 212, 135, 14

Link to comment
Share on other sites

µTorrent 1.7 BETA (Build 1170)

@ dasq

It seems to be the same but after time left is realized the selected function.

These dialogs are not displayed...

Quitting program

Hibernating computer... %s

Stand-by computer... %s

Restarting computer... %s

Shutting down computer... %s

Link to comment
Share on other sites

Why should they feel intimidated when they specified they wanted it to be shutdown?

Cmon that's ridiculous.

<druggie> dealer: I would like some narcotics please

<dealer> druggie: oh you mean coke and meth?

<druggies> dealer: please call them narcotics, I can't stand to hear their real names.

Link to comment
Share on other sites

Why should they feel intimidated when they specified they wanted it to be shutdown?

Cmon that's ridiculous.

Shutdown targets only 2 of the 11 commands available, yet 10 of the commands open the same message panel. Go through each process. See for yourself before saying it's ridiculous.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...