forked from mia/Aegisub
Use NumValidator to ensure only numbers are typed in the frames box of the jump to dialog. Updates #1319.
Originally committed to SVN as r5953.
This commit is contained in:
parent
157c03ce63
commit
90582c0b15
1 changed files with 2 additions and 3 deletions
|
@ -51,6 +51,7 @@
|
||||||
#include "libresrc/libresrc.h"
|
#include "libresrc/libresrc.h"
|
||||||
#include "timeedit_ctrl.h"
|
#include "timeedit_ctrl.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
#include "validators.h"
|
||||||
#include "video_context.h"
|
#include "video_context.h"
|
||||||
|
|
||||||
DialogJumpTo::DialogJumpTo(agi::Context *c)
|
DialogJumpTo::DialogJumpTo(agi::Context *c)
|
||||||
|
@ -68,7 +69,7 @@ DialogJumpTo::DialogJumpTo(agi::Context *c)
|
||||||
// Times
|
// Times
|
||||||
wxStaticText *LabelFrame = new wxStaticText(this,-1,_("Frame: "),wxDefaultPosition,wxSize(60,20));
|
wxStaticText *LabelFrame = new wxStaticText(this,-1,_("Frame: "),wxDefaultPosition,wxSize(60,20));
|
||||||
wxStaticText *LabelTime = new wxStaticText(this,-1,_("Time: "),wxDefaultPosition,wxSize(60,20));
|
wxStaticText *LabelTime = new wxStaticText(this,-1,_("Time: "),wxDefaultPosition,wxSize(60,20));
|
||||||
JumpFrame = new wxTextCtrl(this,-1,wxString::Format("%i",jumpframe),wxDefaultPosition,wxSize(60,20),wxTE_PROCESS_ENTER);
|
JumpFrame = new wxTextCtrl(this,-1,wxString::Format("%i",jumpframe),wxDefaultPosition,wxSize(60,20),wxTE_PROCESS_ENTER, NumValidator());
|
||||||
JumpFrame->SetMaxLength(maxLength.size());
|
JumpFrame->SetMaxLength(maxLength.size());
|
||||||
JumpTime = new TimeEdit(this,-1,jumptime.GetASSFormated(),wxDefaultPosition,wxSize(60,20),wxTE_PROCESS_ENTER);
|
JumpTime = new TimeEdit(this,-1,jumptime.GetASSFormated(),wxDefaultPosition,wxSize(60,20),wxTE_PROCESS_ENTER);
|
||||||
wxSizer *FrameSizer = new wxBoxSizer(wxHORIZONTAL);
|
wxSizer *FrameSizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
|
@ -120,8 +121,6 @@ void DialogJumpTo::OnEditTime (wxCommandEvent &) {
|
||||||
|
|
||||||
void DialogJumpTo::OnEditFrame (wxCommandEvent &event) {
|
void DialogJumpTo::OnEditFrame (wxCommandEvent &event) {
|
||||||
JumpFrame->GetValue().ToLong(&jumpframe);
|
JumpFrame->GetValue().ToLong(&jumpframe);
|
||||||
JumpFrame->ChangeValue(wxString::Format("%i", jumpframe));
|
|
||||||
|
|
||||||
int newtime = c->videoController->TimeAtFrame(jumpframe);
|
int newtime = c->videoController->TimeAtFrame(jumpframe);
|
||||||
if (JumpTime->time.GetMS() != newtime) {
|
if (JumpTime->time.GetMS() != newtime) {
|
||||||
JumpTime->time.SetMS(newtime);
|
JumpTime->time.SetMS(newtime);
|
||||||
|
|
Loading…
Reference in a new issue