Skip to content

Commit

Permalink
changed some slices, modified README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
levey committed Dec 1, 2011
1 parent e5bfcdb commit da1d2cd
Show file tree
Hide file tree
Showing 49 changed files with 80 additions and 116 deletions.
Binary file added .DS_Store
Binary file not shown.
152 changes: 56 additions & 96 deletions AwesomeMenu.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Binary file not shown.
2 changes: 1 addition & 1 deletion AwesomeMenu/AppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// AwesomeMenu
//
// Created by Levey on 11/30/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
// Copyright (c) 2011 lunaapp.com. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
18 changes: 9 additions & 9 deletions AwesomeMenu/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// AwesomeMenu
//
// Created by Levey on 11/30/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
// Copyright (c) 2011 lunaapp.com. All rights reserved.
//

#import "AppDelegate.h"
Expand All @@ -25,38 +25,38 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
self.window.backgroundColor = [UIColor whiteColor];


UIImage *storyMenuItemImage = [UIImage imageNamed:@"story-button.png"];
UIImage *storyMenuItemImagePressed = [UIImage imageNamed:@"story-button-pressed.png"];
UIImage *storyMenuItemImage = [UIImage imageNamed:@"bg-menuitem.png"];
UIImage *storyMenuItemImagePressed = [UIImage imageNamed:@"bg-menuitem-highlighted.png"];

// Camera MenuItem.
QuadCurveMenuItem *cameraMenuItem = [[QuadCurveMenuItem alloc] initWithImage:storyMenuItemImage
highlightedImage:storyMenuItemImagePressed
ContentImage:[UIImage imageNamed:@"story-camera.png"]
ContentImage:[UIImage imageNamed:@"icon-star.png"]
highlightedContentImage:nil];
// People MenuItem.
QuadCurveMenuItem *peopleMenuItem = [[QuadCurveMenuItem alloc] initWithImage:storyMenuItemImage
highlightedImage:storyMenuItemImagePressed
ContentImage:[UIImage imageNamed:@"story-people.png"]
ContentImage:[UIImage imageNamed:@"icon-star.png"]
highlightedContentImage:nil];
// Place MenuItem.
QuadCurveMenuItem *placeMenuItem = [[QuadCurveMenuItem alloc] initWithImage:storyMenuItemImage
highlightedImage:storyMenuItemImagePressed
ContentImage:[UIImage imageNamed:@"story-place.png"]
ContentImage:[UIImage imageNamed:@"icon-star.png"]
highlightedContentImage:nil];
// Music MenuItem.
QuadCurveMenuItem *musicMenuItem = [[QuadCurveMenuItem alloc] initWithImage:storyMenuItemImage
highlightedImage:storyMenuItemImagePressed
ContentImage:[UIImage imageNamed:@"story-music.png"]
ContentImage:[UIImage imageNamed:@"icon-star.png"]
highlightedContentImage:nil];
// Thought MenuItem.
QuadCurveMenuItem *thoughtMenuItem = [[QuadCurveMenuItem alloc] initWithImage:storyMenuItemImage
highlightedImage:storyMenuItemImagePressed
ContentImage:[UIImage imageNamed:@"story-thought.png"]
ContentImage:[UIImage imageNamed:@"icon-star.png"]
highlightedContentImage:nil];
// Sleep MenuItem.
QuadCurveMenuItem *sleepMenuItem = [[QuadCurveMenuItem alloc] initWithImage:storyMenuItemImage
highlightedImage:storyMenuItemImagePressed
ContentImage:[UIImage imageNamed:@"story-sleep.png"]
ContentImage:[UIImage imageNamed:@"icon-star.png"]
highlightedContentImage:nil];

NSArray *menus = [NSArray arrayWithObjects:cameraMenuItem, peopleMenuItem, placeMenuItem, musicMenuItem, thoughtMenuItem, sleepMenuItem, nil];
Expand Down
2 changes: 1 addition & 1 deletion AwesomeMenu/QuadCurveMenu.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// AwesomeMenu
//
// Created by Levey on 11/30/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
// Copyright (c) 2011 lunaapp.com. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
10 changes: 5 additions & 5 deletions AwesomeMenu/QuadCurveMenu.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// AwesomeMenu
//
// Created by Levey on 11/30/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
// Copyright (c) 2011 lunaapp.com. All rights reserved.
//

#import "QuadCurveMenu.h"
Expand Down Expand Up @@ -53,10 +53,10 @@ - (id)initWithFrame:(CGRect)frame menus:(NSArray *)aMenusArray
}

// add the "Add" Button.
_addButton = [[QuadCurveMenuItem alloc] initWithImage:[UIImage imageNamed:@"story-add-button.png"]
highlightedImage:[UIImage imageNamed:@"story-add-button-pressed.png"]
ContentImage:[UIImage imageNamed:@"story-add-plus.png"]
highlightedContentImage:[UIImage imageNamed:@"story-add-plus-pressed.png"]];
_addButton = [[QuadCurveMenuItem alloc] initWithImage:[UIImage imageNamed:@"bg-addbutton.png"]
highlightedImage:[UIImage imageNamed:@"bg-addbutton-highlighted.png"]
ContentImage:[UIImage imageNamed:@"icon-plus.png"]
highlightedContentImage:[UIImage imageNamed:@"icon-plus-highlighted.png"]];
_addButton.delegate = self;
_addButton.center = STARTPOINT;
[self addSubview:_addButton];
Expand Down
2 changes: 1 addition & 1 deletion AwesomeMenu/QuadCurveMenuItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// AwesomeMenu
//
// Created by Levey on 11/30/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
// Copyright (c) 2011 lunaapp.com. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
2 changes: 1 addition & 1 deletion AwesomeMenu/QuadCurveMenuItem.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// AwesomeMenu
//
// Created by Levey on 11/30/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
// Copyright (c) 2011 lunaapp.com. All rights reserved.
//

#import "QuadCurveMenuItem.h"
Expand Down
Binary file added AwesomeMenu/bg-addbutton-highlighted.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/bg-addbutton-highlighted@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/bg-addbutton.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/bg-addbutton@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/bg-menuitem-highlighted.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/bg-menuitem-highlighted@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/bg-menuitem.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/bg-menuitem@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/icon-plus-highlighted.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/icon-plus-highlighted@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/icon-plus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/icon-plus@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/icon-star.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AwesomeMenu/icon-star@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion AwesomeMenu/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// AwesomeMenu
//
// Created by Levey on 11/30/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
// Copyright (c) 2011 lunaapp.com. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
Binary file removed AwesomeMenu/story-add-button-pressed.png
Binary file not shown.
Binary file removed AwesomeMenu/story-add-button-pressed@2x.png
Binary file not shown.
Binary file removed AwesomeMenu/story-add-button.png
Binary file not shown.
Binary file removed AwesomeMenu/story-add-button@2x.png
Binary file not shown.
Binary file removed AwesomeMenu/story-add-plus-pressed.png
Binary file not shown.
Binary file removed AwesomeMenu/story-add-plus-pressed@2x.png
Binary file not shown.
Binary file removed AwesomeMenu/story-add-plus.png
Binary file not shown.
Binary file removed AwesomeMenu/story-add-plus@2x.png
Binary file not shown.
Binary file removed AwesomeMenu/story-button-pressed.png
Binary file not shown.
Binary file removed AwesomeMenu/story-button-pressed@2x.png
Binary file not shown.
Binary file removed AwesomeMenu/story-button.png
Binary file not shown.
Binary file removed AwesomeMenu/story-button@2x.png
Diff not rendered.
Binary file removed AwesomeMenu/story-camera.png
Diff not rendered.
Binary file removed AwesomeMenu/story-camera@2x.png
Diff not rendered.
Binary file removed AwesomeMenu/story-music.png
Diff not rendered.
Binary file removed AwesomeMenu/story-music@2x.png
Diff not rendered.
Binary file removed AwesomeMenu/story-people.png
Diff not rendered.
Binary file removed AwesomeMenu/story-people@2x.png
Diff not rendered.
Binary file removed AwesomeMenu/story-place.png
Diff not rendered.
Binary file removed AwesomeMenu/story-place@2x.png
Diff not rendered.
Binary file removed AwesomeMenu/story-sleep.png
Diff not rendered.
Binary file removed AwesomeMenu/story-sleep@2x.png
Diff not rendered.
Binary file removed AwesomeMenu/story-thought.png
Diff not rendered.
Binary file removed AwesomeMenu/story-thought@2x.png
Diff not rendered.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
![screenshots](http://lunaapp.com/images/external/qcmenu.GIF)
QuadCurveMenu is a menu looks like [Path](https://path.com/)'s story menu.

Enjoy to use it:)

![screenshots](http://lunaapp.com/images/external/qcmenu2.gif)

0 comments on commit da1d2cd

Please sign in to comment.