Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
1a412370
Kaydet (Commit)
1a412370
authored
Eyl 09, 2013
tarafından
Siqi LIU
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
auto scroll to default time widget fix
Change-Id: Ib71adb544c02b764fe85b2fd32fda2097efc41d0
üst
24f277a4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
8 deletions
+19
-8
AppDelegate.h
ios/iosremote/iosremote/AppDelegate.h
+2
-0
AppDelegate.m
ios/iosremote/iosremote/AppDelegate.m
+2
-0
BasePresentationViewController.m
ios/iosremote/iosremote/BasePresentationViewController.m
+6
-6
slideShowPreviewTable_vc.m
ios/iosremote/iosremote/slideShowPreviewTable_vc.m
+8
-1
slideShowSwipeInList_iphone.m
ios/iosremote/iosremote/slideShowSwipeInList_iphone.m
+1
-1
No files found.
ios/iosremote/iosremote/AppDelegate.h
Dosyayı görüntüle @
1a412370
...
...
@@ -16,4 +16,6 @@
@property
(
strong
,
nonatomic
)
UIWindow
*
window
;
-
(
void
)
reconfigure
;
@end
ios/iosremote/iosremote/AppDelegate.m
Dosyayı görüntüle @
1a412370
...
...
@@ -68,6 +68,8 @@ blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
kStopwatchAutoStart
=
[[
NSUserDefaults
standardUserDefaults
]
boolForKey
:
@"STOPWATCH_AUTO_START"
];
kCountDownTimerAutoStart
=
[[
NSUserDefaults
standardUserDefaults
]
boolForKey
:
@"TIMER_AUTO_START"
];
kCountDownTimerVibration
=
[[
NSUserDefaults
standardUserDefaults
]
boolForKey
:
@"TIMER_VIBRATION"
];
NSLog
(
@"Setting kDefaultTimerWidget to %d"
,
kDefaultTimerWidget
);
}
-
(
void
)
applicationWillResignActive
:
(
UIApplication
*
)
application
...
...
ios/iosremote/iosremote/BasePresentationViewController.m
Dosyayı görüntüle @
1a412370
...
...
@@ -322,12 +322,6 @@
[
self
.
timerView
setShadowLight
];
self
.
timer
.
delegate
=
self
;
self
.
stopWatchTimerScrollView
.
contentSize
=
CGSizeMake
(
1240
,
62
);
CGRect
frame
=
self
.
stopWatchTimerScrollView
.
frame
;
frame
.
origin
.
x
=
frame
.
size
.
width
*
kDefaultTimerWidget
;
frame
.
origin
.
y
=
0
;
[
self
.
stopWatchTimerScrollView
scrollRectToVisible
:
frame
animated
:
YES
];
}
-
(
void
)
viewDidAppear
:
(
BOOL
)
animated
...
...
@@ -412,6 +406,12 @@
[
self
.
stopWatch
start
];
if
(
kCountDownTimerAutoStart
)
[
self
.
timer
start
];
CGRect
frame
=
self
.
stopWatchTimerScrollView
.
frame
;
frame
.
origin
.
x
=
frame
.
size
.
width
*
kDefaultTimerWidget
;
frame
.
origin
.
y
=
0
;
[
self
.
stopWatchTimerScrollView
scrollRectToVisible
:
frame
animated
:
YES
];
[
self
.
timer
setSecondsLeft
:
kCountDownTimerDefaultDuration
*
60
];
}];
self
.
slideshow
.
delegate
=
self
;
}
...
...
ios/iosremote/iosremote/slideShowPreviewTable_vc.m
Dosyayı görüntüle @
1a412370
...
...
@@ -11,9 +11,10 @@
#import "CommandTransmitter.h"
#import "CommandInterpreter.h"
#import "SlideShow.h"
#import "AppDelegate.h"
#import "IASKAppSettingsViewController.h"
@interface
slideShowPreviewTable_vc
()
@interface
slideShowPreviewTable_vc
()
<
IASKSettingsDelegate
>
@property
(
nonatomic
,
strong
)
IASKAppSettingsViewController
*
appSettingsViewController
;
...
...
@@ -25,6 +26,12 @@
@synthesize
titleObserver
=
_titleObserver
;
@synthesize
appSettingsViewController
=
_appSettingsViewController
;
#pragma mark IASKSettingsDelegate
-
(
void
)
settingsViewControllerDidEnd
:(
IASKAppSettingsViewController
*
)
sender
{
[(
AppDelegate
*
)[[
UIApplication
sharedApplication
]
delegate
]
reconfigure
];
}
-
(
BOOL
)
shouldAutorotateToInterfaceOrientation
:(
UIInterfaceOrientation
)
toInterfaceOrientation
{
if
(
UI_USER_INTERFACE_IDIOM
()
==
UIUserInterfaceIdiomPad
)
...
...
ios/iosremote/iosremote/slideShowSwipeInList_iphone.m
Dosyayı görüntüle @
1a412370
...
...
@@ -216,7 +216,7 @@ dispatch_queue_t backgroundQueue;
scroll
.
contentSize
=
CGSizeMake
(
412
,
120
);
CGRect
frame
=
scroll
.
frame
;
frame
.
origin
.
x
=
frame
.
size
.
width
*
kDefaultTimerWidget
;
frame
.
origin
.
x
=
frame
.
size
.
width
*
self
.
currentPage
;
frame
.
origin
.
y
=
0
;
[
scroll
scrollRectToVisible
:
frame
animated
:
YES
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment