The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

How to catch WM_COMMAND message in child-child control

I want to handle WM_COMMAND message sended when button clicked. But the problem is the button not being direct child of main window. So I decided to use old-style sublassing. So, I am able to handle ...
0
votes
2answers
35 views

Subclassing and inheritance best practice

I am having a problem understanding the best practises for creating classes and subclasses of them using inheritance. Lets say, I want to implement 3 type of users in my project Admin, User and ...
0
votes
0answers
13 views

Cannot find interface declaration for 'SomeSubClassA', superclass of 'SomeOtherClass'

I am getting an error Cannot find interface declaration for 'SomeOtherClass', superClass of 'SomeSubClassA' whilst trying to build my code... The subclass header file looks like so: #import ...
0
votes
2answers
42 views

Forward Declare a Subclass

I have a Base class A in a header file A.h class A{}; in A.cpp I have several subclasses: class B: public A{}; class C: public A{}; I would like to instantiate types B and C in a separate file ...
0
votes
1answer
23 views

Overriding get_absolute_url from a model for the sitemap

Hey i have a model that can be accesed through 2 different urls(depending on the domain). And i use them like this in views and templates without problems. When building the sitemap the ...
2
votes
0answers
30 views

Ironpython subclassing .NET classes

I am trying to subclass the .NET RoutedUICommand in IronPython. I can do this as long as I do not pass any parameters to the init function. As soon as I do this, I get an ArgumentTypeException ...
1
vote
1answer
37 views

Subclassing a subclass of UIImageView - Forward declaration errors

I have read question after question about people getting the same error as me, but I simply do not understand them, so before you go searching for duplicate questions, maybe someone can explain to me ...
0
votes
1answer
31 views

How do I know whether a NIB file is loaded or not?

I made a series of UIView subclasses. Each is inherited from another. In the grand grand parents of all the subclass is this code: NSString * className = NSStringFromClass([self class]); [[NSBundle ...
0
votes
2answers
71 views

Window is empty when sub-classing EDIT control in C++ WINAPI

I have an EDIT control which I try to subclass and when I do so the entire window is empty: // Global variables HINSTANCE hInst; WNDPROC oldEditWndProc; INT_PTR CALLBACK EditWndProc(HWND, UINT, ...
1
vote
1answer
83 views

Confusion with Java generics and subclassing

I have the following: An abstract class BaseScore LevelScore which is a subclass of BaseScore I then have: An abstract class BaseScoreRecord public abstract class BaseScoreRecord<T extends ...
0
votes
0answers
18 views

Subclassing a UIView, one method to setup whether initWithFrame: or awakeFromNib

When subclassing a UIView I tend to create a private method called 'setup', which I put into initWithFrame and awakeFromNib. Is this what other people tend to do too? Or is there a method I don't ...
1
vote
0answers
18 views

Using Animation subclasses inflated from XML

I have successfully inflated View subclasses from XML using custom attributes I've added, but View hierarchies in layouts are such that you can specify an item's fully qualified class name in the XML. ...
0
votes
1answer
45 views

Proper way to replace NSTextStorage in NSTextView?

I am making some text viewer app. Currently I need very frequent and precise line handling ability, so I want to subclass NSTextStorage class. But I couldn't find any method to set a new text storage ...
1
vote
0answers
76 views

Managing Selection on Reused UITableViewCells (Subclassed)

I know it goes against Apple's guidelines, but I would like to use permanent cell selection in my tableview by setting a custom selected state for my subclassed UITableView cells. It fits better to ...
0
votes
0answers
21 views

Modify value of an inherited bultin class in Matlab

I can not go through this problem: I've subclassed the bult-in class double in the Matlab classdef Param < double and construct my class with an additional property myPar. The constructor looks ...
1
vote
1answer
59 views

Subclassing Control

In WINAPI, which is correct/necessary? SetWindowLongPtr(HelpBox, GWLP_USERDATA, static_cast<LONG_PTR>(SetWindowLongPtr(HelpBox, GWLP_WNDPROC, (LONG_PTR)(Subclass)))); OR ...
0
votes
0answers
79 views

Win32 Subclassed Window Messages

I have a Static Window with a Button Window inside in a Win32 application, and I subclassed the button so I get to handle it's messages with my single "MessageProc". void ...
1
vote
2answers
74 views

Copy data from an lParam value to a RECT structure in VB6

I am trying to get the rect from lParam while subclassing WM_MOVING. My code currently is Public Declare Function CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (pDest As Any, pSource As Any, ...
0
votes
0answers
18 views

setWantLayers performance issue

I'm subclassing NSImageView in order to make a custom mouseEntered and mouseExited methods in cocoa. Every time the mouse cursor is over the ImageView, it is applied a shadow filter on it. I know that ...
1
vote
1answer
45 views

I want one choice to effect two fields in admin

I am subclassing a model from Mezzanine, a django app. In the admin, I want to have a choice list. The choice is tied to an image from a fixed list of images which will be displayed in a blog ...
1
vote
1answer
95 views

How to return correct type from an overriden method in Scala?

As a newbie in Scala, I have stumbled on this seemingly easy point of SubClassing and Overriding methods. I have specialized a Set thus: class SpecializedSet [T](s:Int, b: Boolean) (implicit ...
1
vote
2answers
91 views

Design complexity with subclassing in Objective-C

I'm using Cocos2D for iOS, but you most likely don't have to be familiar with Cocos2D, just Obj-C to answer my question. I have an enemy class while developing this game that I've used for a long ...
1
vote
2answers
62 views

Python built-in types subclassing

What's wrong with this code? class MyList(list): def __init__(self, li): self = li When I create an instance of MyList with, for example, MyList([1, 2, 3]), and then I print this instance, all I ...
0
votes
1answer
106 views

Set properties of multiple different JButtons in a loop

String[] objectName = { //these are all names for JButtons "firstBtn", "secondBtn", "thirdBtn", "coin1", "coin5", "coin25", ...
0
votes
1answer
111 views

subclassing a wpf popup control

I was looking for a way to drag/move a PopUp Control and I found this answer Drag wpf popup control unfortunately I couldn't figure out how to subclass a PopUp control, I tried creating a custom ...
1
vote
1answer
177 views

Subclassing core Ruby class such as Hash

I need a class that acts like a Hash, though not necessarily with all the Hash methods. I've read that it is not a good idea to subclass core classes like Hash. Whether or not that is true, what is ...
0
votes
0answers
97 views

What do you think about this UILabel subclass? [closed]

I'd like to share with you my UILabel subclass. I use it to easily show timers, countdowns, etc. It never gave me any problem and I can update labels with just a delegate. I think it works well so I ...
1
vote
2answers
399 views

Custom UINavigationBar sizeThatFits implementation not returning real frame.size.width

I am trying to subclass UINavigationBar with a defined height and trying to implement sizeThatFits method: @implementation NavigationBar - (CGSize)sizeThatFits:(CGSize)size { NSLog(@"frame: %@", ...
0
votes
0answers
45 views

responding to touches in Subviews of a uiscrollview

I'm doing a mine sweeper program and have been putting it together in chunks. generating the logic to generate the board structure and draw the tiles and respond to touches. and that worked until i ...
0
votes
2answers
103 views

Subclassing and Adding init Method Always Returns nil

I'm trying to subclass the UIImage class and add a custom init method with some added variables. However, when I try and create a new object using the new initializer the object is always nil. The new ...
1
vote
3answers
87 views

Decorated classes inheritance and classmethods

How to decorate a class in the right way to be able to inherit a classes from the decorated one? Is there exists a right way? If I will do something like: def singleton(cls): ...
4
votes
2answers
92 views

Objective-C subclassing and future compatibility

Objective-C supports subclassing and categories which allow you to add methods to an existing class. Here's my case. // Made at earlier than iOS 5.x @interface MyVC : UIViewController - ...
1
vote
1answer
128 views

Mocking class properties while using 'autospec=True' in python

I wish to mock a class with the following requirements: The class has public read/write properties, defined in its __init__() method The class has public attribute which is auto-incremented on ...
2
votes
1answer
81 views

subclassing a UITextField

I'm new to this and I'm trying to get my head around the implementation of subclassing. I understand the fundamental of creating a new file, and making it a subclass of whatever parent class (in ...
3
votes
2answers
116 views

Are class initializers possible in C#?

In C# you have object initializers to initialize fields of objects at creation time without using a constructor. Now I'm wondering if there is an equivalent to classes which means that you can ...
1
vote
1answer
183 views

Subclassing UIView containing multiple UIViews

I want to create a UIView subclass which will in its initializer add a UIView to its own view, like: [self addSubview: someKindOfUIView]; This is how I've implemented it in the implementation ...
2
votes
1answer
69 views

Subclassing Tkinter.Tcl

I would like to extend the behavior of Tkinter.Tcl. I tried subclassing it but it turns out Tcl is a factory function that returns an object. If Tcl were a class, I would simply: from Tkinter import ...
2
votes
4answers
270 views

Convert String to custom Class Type in Vb.net

Most of the search results I've found have turned up to be the opposite of what I'm looking for so here's my question: I'm trying to convert System types into custom types of my own but as I ...
0
votes
1answer
130 views

How to replace method of UIWebView instead restricted subclassing?

Subclassing of UIWebView is restricted by Apple. But I need to replace method canPerformAction to the following one: -(BOOL) canPerformAction:(SEL)action withSender:(id)sender { if ((action == ...
0
votes
1answer
52 views

NSString cannot decode class version XXXX

I'm implementing my own keyed NSCoder subclass and decoding is failing for an NSString. If I do something like the following: MyUnarchiver *aDecoder = [[MyUnarchiver alloc] ...
5
votes
3answers
128 views

Avoid having two different numeric subclasses?

When working on essentially a custom enumerated type implementation, I ran into a situation where it appears I had to derive separate yet almost identical subclasses from both int and long since ...
5
votes
1answer
519 views

How to subclass Navigation Controller when using storyboards?

I'm using storyboards in interface builder using the Xcode menu 'Editor...Embed in...Navigation Controller'. It seems that in iOS 6 you have to subclass the UINavigationController to allow all ...
0
votes
1answer
43 views

Are owners of XIB must/should be UIViewController

I have had success with UIView as owner when I want to subclass UIView with xib. However, it's kind of awkward and involve moving all superView from self.view to self in initWith:something class. ...
1
vote
1answer
139 views

Conversion between std::vector subclass with custom allocator and std::vectors

I have an advanced C++ question: Suppose I have a mmap_allocator template class, which is a subclass of std::allocator template class and a mmappable_vector template class which is a subclass of ...
0
votes
1answer
68 views

Is it a good practice to subclass a UIViewController's subclass?

Say you have a 2 subclass of tableView controller. They both have the same header and footer view on top of the bottom of the header. They both implement pull to refresh. They both have some common ...
0
votes
2answers
121 views

Hibernate, subclassing because of calculated fields (Hibernate 2.8.1)

I have a view in my db e.g view1 and I need to use this view up to making report view1report with some calculated fields, say AplusB (of course I want to handle them as objects by Hibernate) Example ...
0
votes
1answer
53 views

Subclass of UINavigationBar - Setting translucent to YES not working

Not sure if this is the correct approach but subclassing a UINavigationBar and setting it's translucent to YES doesn't seem to work. In my implementation file: - (void)drawRect:(CGRect)rect { ...
1
vote
2answers
95 views

xcode using view in subclass

I am learning to program the iphone and I wanted to do some drawing. I followed some example code and subclassed the viewcontroller and it worked fine. Now as I wanted to expand the program I came ...
0
votes
0answers
21 views

Exactly how improper is it to inherit from a class solely for aliasing and how do I measure such thing?

Good afternoon everyone! I've been wondering about the title question for a while, and how to measure it. There's this legacy code on a project of mine which includes about two dozen super ...
1
vote
1answer
52 views

Attaching attributes to a class on creation

I have a bunch of classes that get persisted in a ZODB. All classes have to share some indexing features, but also all of them define a lot of properties. The properties are defined on class level ...

1 2 3 4 5 6