Changeset 1fc66eda83b0d8932f61f050928095fa04ee05cb
- Timestamp:
- 03/01/04 11:55:07
(5 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1073127307 +0000
- git-parent:
[db294cb081d257ad1c8766ac22ddcf2a857bf42b]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1073127307 +0000
- Message:
* modules/gui/wxwindows/interface.cpp: fixed and re-enabled aspect-ratio combobox in the extended gui.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r565e66c |
r1fc66ed |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2000-2001, 2003 VideoLAN |
|---|
| 5 | | * $Id: interface.cpp,v 1.81 2003/12/31 10:30:44 zorglub Exp $ |
|---|
| | 5 | * $Id: interface.cpp,v 1.82 2004/01/03 10:55:07 gbazin Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Gildas Bazin <gbazin@netcourrier.com> |
|---|
| … | … | |
| 171 | 171 | EVT_CHECKBOX( Adjust_Event, Interface::OnEnableAdjust) |
|---|
| 172 | 172 | |
|---|
| 173 | | EVT_COMBOBOX( Ratio_Event, Interface::OnRatio) |
|---|
| | 173 | EVT_TEXT( Ratio_Event, Interface::OnRatio) |
|---|
| 174 | 174 | EVT_CHECKBOX( Visual_Event, Interface::OnEnableVisual) |
|---|
| 175 | 175 | |
|---|
| … | … | |
| 555 | 555 | extra_sizer->Add(adjust_sizer,1,wxBOTTOM,5); |
|---|
| 556 | 556 | |
|---|
| 557 | | #if 0 |
|---|
| 558 | 557 | /* Create sizer to surround the other controls */ |
|---|
| 559 | 558 | wxBoxSizer *other_sizer = new wxBoxSizer( wxVERTICAL ); |
|---|
| … | … | |
| 589 | 588 | video_sizer->Layout(); |
|---|
| 590 | 589 | |
|---|
| | 590 | #if 0 |
|---|
| 591 | 591 | wxBoxSizer *visual_sizer = new wxBoxSizer( wxHORIZONTAL ); |
|---|
| 592 | 592 | |
|---|
| … | … | |
| 607 | 607 | audio_sizer->Layout(); |
|---|
| 608 | 608 | |
|---|
| | 609 | other_sizer->Add( audio_sizer , 0 , wxALL | wxEXPAND , 0 ); |
|---|
| | 610 | #endif |
|---|
| 609 | 611 | other_sizer->Add( video_sizer, 0, wxALL | wxEXPAND , 0); |
|---|
| 610 | | other_sizer->Add( audio_sizer , 0 , wxALL | wxEXPAND , 0 ); |
|---|
| 611 | 612 | other_sizer->Layout(); |
|---|
| 612 | 613 | |
|---|
| 613 | 614 | extra_sizer->Add(other_sizer,0,wxBOTTOM,5); |
|---|
| 614 | | #endif |
|---|
| 615 | 615 | |
|---|
| 616 | 616 | extra_frame->SetSizer( extra_sizer ); |
|---|