當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript angular2-hotkeys.HotkeysService類代碼示例

本文整理匯總了TypeScript中angular2-hotkeys.HotkeysService的典型用法代碼示例。如果您正苦於以下問題:TypeScript HotkeysService類的具體用法?TypeScript HotkeysService怎麽用?TypeScript HotkeysService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了HotkeysService類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

 constructor(private _hotkeysService: HotkeysService,
             private store: Store<Reducers.State>) {
   this._hotkeysService.add(new Hotkey('ctrl+s', (event: KeyboardEvent): boolean => {
     this.store.dispatch(new SkilltreeActions.SaveSkilltreesAction());
     return false;
   }));
   this._hotkeysService.add(new Hotkey('ctrl+z', (event: KeyboardEvent): boolean => {
     this.store.dispatch(new UndoAction());
     return false;
   }));
   this._hotkeysService.add(new Hotkey('ctrl+shift+z', (event: KeyboardEvent): boolean => {
     this.store.dispatch(new RedoAction());
     return false;
   }));
 }
開發者ID:xXKeyleXx,項目名稱:MyPet-SkilltreeCreator,代碼行數:15,代碼來源:hotkey.service.ts

示例2: constructor

  constructor(
    private _hotkeysService:  HotkeysService,
    private critterService:   CritterService,
    private hunterService:    HunterService,
    private mapService:       MapService,
    private spaceService:     SpaceService
  ) {

    this.update(
      this.hunterService.surroundings,
      [this.hunterService.positionX, this.hunterService.positionY]
    );

    this._hotkeysService.add(
        new Hotkey(["up", "k"], (event: KeyboardEvent): boolean => {
        this.processMovement([0, -1]);
        return false;
      })
    );
    this._hotkeysService.add(
        new Hotkey(["down", "j"], (event: KeyboardEvent): boolean => {
        this.processMovement([0, 1]);
        return false;
      })
    );
    this._hotkeysService.add(
      new Hotkey(["left", "h"], (event: KeyboardEvent): boolean => {
        this.processMovement([-1, 0]);
        return false;
      })
    );
    this._hotkeysService.add(
        new Hotkey(["right", "l"], (event: KeyboardEvent): boolean => {
        this.processMovement([1, 0]);
        return false;
      })
    );
  }
開發者ID:kevincoleman,項目名稱:critter,代碼行數:38,代碼來源:app.component.ts

示例3: Hotkey

 ngOnInit() {
     this.htmlItemSwitchService.setLoadMoreItemsCallback(this.moreItemsNeeded.bind(this));
     this.hotkeys = [
         new Hotkey(this.nextKey, (event: KeyboardEvent): boolean => {
             this.htmlItemSwitchService.showNextItem(this.getElements(this.el));
             return false;
         }), new Hotkey(this.previousKey, (event: KeyboardEvent): boolean => {
             this.htmlItemSwitchService.showPreviousItem(this.getElements(this.el));
             return false;
         })
     ];
     this.hotkeysService.add(this.hotkeys);
 }
開發者ID:zoehneto,項目名稱:tumblr-reader,代碼行數:13,代碼來源:post-switch.ts

示例4: setupHotkeys

 /**
  * Setup the hotkeys.
  */
 setupHotkeys () {
   this.hotkeysService.add(new Hotkey('mod+n', this.createNew.bind(this, false)));
   this.hotkeysService.add(new Hotkey('mod+shift+n', this.createNew.bind(this, true)));
   this.hotkeysService.add(new Hotkey('esc', this.cancel.bind(this), ['INPUT']));
   this.hotkeysService.add(new Hotkey('down', this.selectNext.bind(this)));
   this.hotkeysService.add(new Hotkey('up', this.selectPrevious.bind(this)));
   this.hotkeysService.add(new Hotkey('mod+backspace', this.removeSelected.bind(this)));
   this.hotkeysService.add(new Hotkey('mod+enter', this.toggleChecked.bind(this)));
   this.hotkeysService.add(new Hotkey('mod+shift+enter', this.edit.bind(this)));
   this.hotkeysService.add(new Hotkey('mod+o', this.showOpen.bind(this)));
   this.hotkeysService.add(new Hotkey('mod+shift+up', this.moveUp.bind(this)));
   this.hotkeysService.add(new Hotkey('mod+shift+down', this.moveDown.bind(this)));
 }
開發者ID:spirosikmd,項目名稱:zazu,代碼行數:16,代碼來源:zazu.component.ts

示例5: ngOnDestroy

 ngOnDestroy() {
     this.hotkeysService.remove(this.hotkeys);
 }
開發者ID:zoehneto,項目名稱:tumblr-reader,代碼行數:3,代碼來源:post-switch.ts


注:本文中的angular2-hotkeys.HotkeysService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。