Tagged Questions

Visibility is the concept of having something visible on the page or application. Changing the visibility state of an element means to show or hide it from the view of the user.

learn more… | top users | synonyms

73
votes
10answers
9k views

What is the difference between visibility:hidden and display:none

Both of these result in the element not being visible. Are these synonyms?
37
votes
13answers
38k views

How to check if an element is really visible with javascript

In javascript, how would you check if an object is actually visible. I don't just mean checking the visibility and display attributes. I mean, checking that the element is not visibility:hidden or ...
35
votes
1answer
9k views

Difference between Visibility.Collapsed and Visibility.Hidden

What are differences between Visibility.Collapsed and Visibility.Hidden in WPF?
31
votes
10answers
1k views

Why can attributes in Java be public?

As everybody knows, Java follows the paradigms of object orientation, where data encapsulation says, that fields (attributes) of an object should be hidden for the outer world and only accessed via ...
30
votes
6answers
9k views

Why does jQuery show/hide use display:none instead of visibility:hidden?

display:none means that the element isn't rendered as part of the DOM, so it's not loaded until the display property changes to something else. visibility:hidden loads the element, but does not show ...
26
votes
11answers
917 views

Why is the amount of visibility on methods and attributes important?

Why shouldn't one leave all methods and attributes accessible from anywhere (i.e. public)? Can you give me an example of a problem I can run into if I declared an attribute as public?
20
votes
7answers
13k views

How do I invert BooleanToVisibilityConverter?

I'm using a BooleanToVisibilityConverter in WPF to bind the Visibility property of a control to a boolean. This works fine, but I'd like one of the controls to hide if the boolean is true, and show if ...
17
votes
1answer
177 views

Can I create a method with Java protected access in Scala?

I have a Java class that I have ported to Scala, but which still has some Java subclasses implementing abstract functionality. The original Java had public abstract class Base { ... ...
15
votes
8answers
224 views

I'm new to OOP/PHP. What's the practicality of visibility and extensibility in classes?

I'm obviously brand new to these concepts. I just don't understand why you would limit access to properties or methods. It seems that you would just write the code according to intended results. Why ...
15
votes
9answers
435 views

Object oriented design suggestion

Here is my code: class Soldier { public: Soldier(const string &name, const Gun &gun); string getName(); private: Gun gun; string name; }; class Gun { public: void fire(); ...
13
votes
1answer
288 views

What is the difference between the hidden attribute (HTML5) and the display:none rule (CSS)?

HTML5 has a new global attribute, hidden, which can be used to hide content. <article hidden> <h2>Article #1</h2> <p>Lorem ipsum ...</p> </article> CSS ...
12
votes
1answer
199 views

Type-parameterized field of a generic class becomes invisible after upgrading to Java 7

Now Eclipse Indigo SR1 with builtin Java 7 support is finally out since a week or two, I'm migrating my playground projects from Helios SR2 + JDK 1.6_23 to Indigo SR1 + JDK 1.7.0. After a full rebuild ...
12
votes
12answers
438 views

the use of private keyword

I am new to programming. I am learning Java now, there is something I am not really sure, that the use of private. Why programmer set the variable as private then write , getter and setter to access ...
12
votes
4answers
4k views

jquery fade element does not show elements styled 'visibility: hidden'

I have a bunch of thumbnails which I am loading with a style of visibility: hidden; so that they all maintain their correct layouts. Once the page is fully loaded I have a jquery function that fades ...
10
votes
3answers
366 views

Why is there no sub-class visibility modifier in Java?

On more than one occasion I have found myself desiring a variable visibility that is not possible in Java. I wanted certain members to be visible within their own class and within any sub-classes, ...
10
votes
5answers
362 views

Should a List<T> be private?

I need your opinion on this because I have read a lot of different things on the subject. If you have a List<T> or any kind of list within a class declaration do you make it private and then add ...
10
votes
6answers
1k views

Java Private Field Visibility

So I was making a class the other day and used Eclipse's method to create the equals method when I realized that it generated the following working code: class Test { private int privateInt; ...
9
votes
5answers
228 views

lock free containers and visibility

I've seen some lock free implementations of stack... My question is regarding the visibility, not atomicity. For example do elements(not pointers) of lock free stack must be at most 64bit? I think so, ...
9
votes
2answers
241 views

Accessing private inner class in the same package

I have two compilation units: public class OuterClass{ private static class InnerClass{ public String test(){ return "testing123"; } } public static void ...
9
votes
5answers
535 views

How to demonstrate java multithreading visibility problems?

If variables in Java are accessed from multiple threads, one must ensure that they are safely published. This usually means using synchronizedor volatile. I have got the impression, that some of my ...
9
votes
7answers
8k views

Silverlight: How to bind DataGridColumn.Visibility?

I have an issue similar to the following post: http://stackoverflow.com/questions/983272/silverlight-datagridtextcolumn-binding-visibility I need to have a Column within a Silverlight DataGrid be ...
8
votes
5answers
3k views

Protected and private methods in Rails

Method visibility in Ruby (public, protected, and private methods) has been well explained in places like this blog post. But in Ruby on Rails it seems slightly different than it would be in a regular ...
8
votes
1answer
450 views

Static nested class visibility issue with Scala / Java interop

Suppose I have the following Java file in a library: package test; public abstract class AbstractFoo { protected static class FooHelper { public FooHelper() {} } } I would like to ...
8
votes
3answers
728 views

WPF: Stop Binding if a UI element is not visible

Can I delay binding of a ui element if the element is not currently visible. Sometimes I have a form that has some hidden/minimised elements, I would like to not update them if they are not on the ...
8
votes
4answers
1k views

How can I determine programmatically whether the Windows taskbar is hidden or not?

I need to know whether the Windows taskbar is hidden or not. I believe there is no .NET method to do this, and also I have come across a lot of "how to hide and show the taskbar" samples, but I ...
8
votes
2answers
3k views

In WPF, how can I determine whether a control is visible to the user?

I'm displaying a very big tree with a lot of items in it. Each of these items shows information to the user through its associated UserControl control, and this information has to be updated every 250 ...
7
votes
6answers
113 views

member function hiding free function

void foo(int) { } class X { void foo() { } void bar() { foo(42); // error: no matching function for call to 'X::foo(int)' // note: candidate is: ...
7
votes
4answers
7k views

How to make a real private instance variable?

I want to make an instance variable that can't be accessed from outside. Is something like that possible in objective-c? I remember Apple has private variables and stuff like that, but if people know ...
7
votes
5answers
558 views

How can I check if one game object can see another?

I have an object, that is facing a particular direction with (for instance) a 45 degree field of view, and a limit view range. I have done all the initial checks (Quadtree node, and distance), but now ...
6
votes
5answers
1k views

android View with View.GONE still receives onTouch and onClick

This is confusing me: As far as I read a view with setVisibility(View.GONE); should not receive any more touch- or click events. My layout has two parts which where each will be visible or gone so ...
6
votes
5answers
1k views

Hiding instantiated templates in shared library created with g++

I have a file that contains the following: #include <map> class A {}; void doSomething() { std::map<int, A> m; } When compiled into a shared library with g++, the library contains ...
6
votes
7answers
2k views

Java: Subpackage visiblity?

I have two packages in my project: odp.proj and odp.proj.test. There are certain methods that I want to be visible only to the classes in these two packages. How can I do this? EDIT: If there is no ...
5
votes
2answers
205 views

Scala final vs val for concurrency visibility

In Java, when using an object across multiple threads (and in general), it is good practice to make fields final. For example, public class ShareMe { private final MyObject obj; public ...
5
votes
4answers
147 views

Controlling visibility of enum values

Consider a C++ class that exports an enum, maintains an internal array over that enum, and wants to export a command that accepts values from the enum. class foo { public: enum color { red, ...
5
votes
3answers
181 views

Safe Publication without happens-before? Anyhow besides final?

According to JCP (16.2.2. Safe Publication): This happens-before guarantee is actually a stronger promise of visibility and ordering than made by safe publication. When X is safely published from ...
5
votes
2answers
267 views

Issue with C++ template arguments with hidden visibility

I'm compiling the following code under gcc with -fvisibility=hidden: template<class T> struct /*__attribute__ ((visibility("default")))*/ A {}; template<class T> struct B { B() ...
5
votes
3answers
364 views

Better readability/contrast in a disabled JComboBox

I have a JComboBox that needs to be disabled at some point, but I am feeling that the disabled status makes it quite harder to read because the low contrast it has. It would be nice if only the ...
5
votes
3answers
215 views

Checking method visibility in PHP

Is there any way of checking if a class method has been declared as private or public? I'm working on a controller where the url is mapped to methods in the class, and I only want to trigger the ...
5
votes
3answers
169 views

Use TinyInt to hide/show controls?

I have 6 buttons on my GUI. The visibility of the buttons can be configured via checkboxes. Checking the checkbox and saving means the correpsonding button should be shown. I am wondering if it is ...
5
votes
3answers
4k views

Android: How to hide a ListView Item

How can you hide an item in a ListView or at least set its height to zero? I have tried setting the visibility of the View to GONE but it still maintains the item's space (height).
5
votes
4answers
1k views

How can I toggle the main menu visibility using the Alt key in WPF?

I'd like the main menu in my WPF app to behave like the main menu in IE8: it's not visible when the app starts pressing and releasing Alt makes it visible pressing and releasing Alt again makes it ...
5
votes
2answers
198 views

Emacs Lisp: make newly-created buffer visible before the function returns?

In the following function in emacs Lisp, (defun show-life () (interactive) (switch-to-buffer "*Life-Window*") ; show how life goes on while living (live)) ; it takes 70 years to finish and ...
5
votes
4answers
6k views

Silverlight DataGridTextColumn Binding Visibility

Following my earlier post I am now trying now to bind the visibility of DataGridColumns to a VM notification property. MSDN suggests I should be able to do this with ease. I already have a value ...
4
votes
3answers
52 views

Are Ruby imported methods always private?

This is best explained with an example: file1.rb: def foo puts 123 end file2.rb: class A require 'file1' end A.new.foo will give an error "': private method 'foo' called". I can get ...
4
votes
3answers
85 views

Visibility of Class members?

I think i'm aware of accessibilty but I'm not sure if I understand visibility very clearly For example: class X { int x; }; Here, 'x' is only visible in class and but accessible outside of ...
4
votes
2answers
127 views

Silverlight: FrameworkElement.FindName() not finding the control when it's not “visible” in the browser window

I'm having an issue where by I'm using the "FindName()" method of the FrameworkElement object to search for a child control of that element. There's some interesting behavior that I've noticed and ...
4
votes
1answer
305 views

Is there any way to set a private/protected static property using reflection classes?

I am trying to perform a backup/restore function for static properties of classes. I can get a list of all of the static properties and their values using the reflection objects getStaticProperties() ...
4
votes
6answers
381 views

WPF toggle panel visibility

I have two panels, only one should be visible at the same time. I change between them by clicking a button, one on each panel. Is there a nice way to do this in xaml without codebehind or viewmodel? ...
4
votes
2answers
162 views

Are .Net POCO's Threadsafe?

This question might seem a bit odd but has to do with possible visibility issues. The question is inspired by a case in the Java programming language (>jdk5), consider: public class InmutableValue { ...
4
votes
1answer
196 views

Theoretical computer graphics - Ray casting algorithm

I was studying for a Computer Graphics exam using previous iterations and I came across this question Comment the following: "The ray-casting algorithm is fine for calculating projected ...

1 2 3 4 5 13